Roo/bootstrap/menu/Item.js
authorEdward <edward@roojs.com>
Fri, 5 Dec 2014 03:01:33 +0000 (11:01 +0800)
committerEdward <edward@roojs.com>
Fri, 5 Dec 2014 03:01:33 +0000 (11:01 +0800)
Roo/bootstrap/menu/Item.js

index c80c718..d39d58e 100644 (file)
@@ -75,9 +75,6 @@ Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
     
     initEvents : function() 
     {
-        Roo.log('init Menu Items');
-        
-        Roo.log(this.el);
         this.el.on('mouseover', this.onMouseOver, this);
         this.el.on('mouseout', this.onMouseOut, this);
         this.el.on('click', this.onClick, this);
@@ -86,21 +83,16 @@ Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
     
     onClick : function(e)
     {
-        Roo.log('item click');
-        Roo.log(this);
         this.fireEvent("click", this, e);
     },
     
     onMouseOver : function(e)
     {
-        Roo.log('mouse over');
-        Roo.log(this);
         this.fireEvent("mouseover", this, e);
     },
     
     onMouseOut : function(e)
     {
-        Roo.log('mouse out');
         this.fireEvent("mouseout", this, e);
     }
 });