X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/QuickTip.html diff --git a/docs/source/QuickTip.html b/docs/source/QuickTip.html index 089b7f56..cde01863 100644 --- a/docs/source/QuickTip.html +++ b/docs/source/QuickTip.html @@ -1,20 +1,34 @@ -Sencha Documentation Project
/**
- * @class Ext.tip.QuickTip
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.tip.QuickTip
  * @extends Ext.tip.ToolTip
  * A specialized tooltip class for tooltips that can be specified in markup and automatically managed by the global
  * {@link Ext.tip.QuickTipManager} instance.  See the QuickTipManager class header for additional usage details and examples.
- * @constructor
- * Create a new Tip
- * @param {Object} config The configuration options
  * @xtype quicktip
  */
 Ext.define('Ext.tip.QuickTip', {
     extend: 'Ext.tip.ToolTip',
     alternateClassName: 'Ext.QuickTip',
-    /**
+    /**
      * @cfg {Mixed} target The target HTMLElement, Ext.core.Element or id to associate with this Quicktip (defaults to the document).
      */
-    /**
+    /**
      * @cfg {Boolean} interceptTitles True to automatically use the element's DOM title value if available (defaults to false).
      */
     interceptTitles : false,
@@ -44,7 +58,7 @@ Ext.define('Ext.tip.QuickTip', {
         me.callParent();
     },
 
-    /**
+    /**
      * Configures a new quick tip instance and assigns it to a target element.  The following config values are
      * supported (for example usage, see the {@link Ext.tip.QuickTipManager} class header):
      * <div class="mdetail-params"><ul>
@@ -78,7 +92,7 @@ Ext.define('Ext.tip.QuickTip', {
         }
     },
 
-    /**
+    /**
      * Removes this quick tip from its element and destroys it.
      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
      */
@@ -86,7 +100,7 @@ Ext.define('Ext.tip.QuickTip', {
         delete this.targets[Ext.id(el)];
     },
     
-    /**
+    /**
      * Hides a visible tip or cancels an impending show for a particular element.
      * @param {String/HTMLElement/Element} el The element that is the target of the tip.
      */
@@ -263,4 +277,6 @@ Ext.define('Ext.tip.QuickTip', {
         this.callParent();
     }
 });
-
\ No newline at end of file +
+ +