Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / simple-widgets / qtips.js
diff --git a/examples/simple-widgets/qtips.js b/examples/simple-widgets/qtips.js
deleted file mode 100644 (file)
index d9bfd5c..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*\r
- * Ext JS Library 2.2.1\r
- * Copyright(c) 2006-2009, Ext JS, LLC.\r
- * licensing@extjs.com\r
- * \r
- * http://extjs.com/license\r
- */\r
-\r
-Ext.onReady(function(){\r
-    new Ext.ToolTip({\r
-        target: 'tip1',\r
-        html: 'A very simple tooltip'\r
-    });\r
-\r
-    new Ext.ToolTip({\r
-        target: 'ajax-tip',\r
-        width: 200,\r
-        autoLoad: {url: 'ajax-tip.html'},\r
-        dismissDelay: 15000 // auto hide after 15 seconds\r
-    });\r
-\r
-    new Ext.ToolTip({\r
-        target: 'tip2',\r
-        html: 'Click the X to close me',\r
-        title: 'My Tip Title',\r
-        autoHide: false,\r
-        closable: true,\r
-        draggable:true\r
-    });\r
-\r
-    new Ext.ToolTip({\r
-        target: 'track-tip',\r
-        title: 'Mouse Track',\r
-        width:200,\r
-        html: 'This tip will follow the mouse while it is over the element',\r
-        trackMouse:true\r
-    });\r
-\r
-\r
-    Ext.QuickTips.init();\r
-\r
-});
\ No newline at end of file