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