1 /** 2 * @fileOverview menu separator render def 3 * @author yiminghe@gmail.com 4 */ 5 KISSY.add("menu/separatorRender", function (S, Component) { 6 7 return Component.Render.extend({ 8 createDom:function () { 9 this.get("el").attr("role", "separator"); 10 } 11 }); 12 13 }, { 14 requires:['component'] 15 });