X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/source/ClickRepeater.html diff --git a/docs/source/ClickRepeater.html b/docs/source/ClickRepeater.html index c5a2bbc8..60d9686a 100644 --- a/docs/source/ClickRepeater.html +++ b/docs/source/ClickRepeater.html @@ -3,8 +3,8 @@ The source code - - + + @@ -15,8 +15,8 @@ -
/**
- * @class Ext.util.ClickRepeater
+  
/**
+ * @class Ext.util.ClickRepeater
  * @extends Ext.util.Observable
  *
  * A wrapper class which can be applied to any element. Fires a "click" event while the
@@ -25,14 +25,15 @@
  *
  * Optionally, a CSS class may be applied to the element during the time it is pressed.
  *
- * @constructor
- * @param {Mixed} el The element to listen on
- * @param {Object} config
  */
-
 Ext.define('Ext.util.ClickRepeater', {
     extend: 'Ext.util.Observable',
 
+    /**
+     * Creates new ClickRepeater.
+     * @param {String/HTMLElement/Ext.Element} el The element or its ID to listen on
+     * @param {Object} config (optional) Config object.
+     */
     constructor : function(el, config){
         this.el = Ext.get(el);
         this.el.unselectable();
@@ -77,7 +78,7 @@ Ext.define('Ext.util.ClickRepeater', {
     },
 
     /**
-     * @cfg {Mixed} el The element to act as a button.
+     * @cfg {String/HTMLElement/Ext.Element} el The element to act as a button.
      */
 
     /**