Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / src / widgets / menu / BaseItem.js
index 3ee6b14..290d944 100644 (file)
@@ -1,6 +1,6 @@
 /*!
- * Ext JS Library 3.1.1
- * Copyright(c) 2006-2010 Ext JS, LLC
+ * Ext JS Library 3.2.0
+ * Copyright(c) 2006-2010 Ext JS, Inc.
  * licensing@extjs.com
  * http://www.extjs.com/license
  */
@@ -45,7 +45,7 @@ Ext.menu.BaseItem = Ext.extend(Ext.Component, {
      */
     hideOnClick : true,
     /**
-     * @cfg {Number} clickHideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
+     * @cfg {Number} clickHideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 1)
      */
     clickHideDelay : 1,
 
@@ -54,33 +54,33 @@ Ext.menu.BaseItem = Ext.extend(Ext.Component, {
 
     // private
     actionMode : "container",
-    
+
     initComponent : function(){
         Ext.menu.BaseItem.superclass.initComponent.call(this);
         this.addEvents(
-               /**
-                * @event click
-                * Fires when this item is clicked
-                * @param {Ext.menu.BaseItem} this
-                * @param {Ext.EventObject} e
-                */
-               'click',
-               /**
-                * @event activate
-                * Fires when this item is activated
-                * @param {Ext.menu.BaseItem} this
-                */
-               'activate',
-               /**
-                * @event deactivate
-                * Fires when this item is deactivated
-                * @param {Ext.menu.BaseItem} this
-                */
-               'deactivate'
-           );
-           if(this.handler){
-               this.on("click", this.handler, this.scope);
-           }
+            /**
+             * @event click
+             * Fires when this item is clicked
+             * @param {Ext.menu.BaseItem} this
+             * @param {Ext.EventObject} e
+             */
+            'click',
+            /**
+             * @event activate
+             * Fires when this item is activated
+             * @param {Ext.menu.BaseItem} this
+             */
+            'activate',
+            /**
+             * @event deactivate
+             * Fires when this item is deactivated
+             * @param {Ext.menu.BaseItem} this
+             */
+            'deactivate'
+        );
+        if(this.handler){
+            this.on("click", this.handler, this.scope);
+        }
     },
 
     // private