Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / panel / bubble-panel.js
diff --git a/examples/panel/bubble-panel.js b/examples/panel/bubble-panel.js
deleted file mode 100644 (file)
index 8241db8..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*!
- * Ext JS Library 3.3.1
- * Copyright(c) 2006-2010 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
-Ext.onReady(function(){   
-    var title = new Ext.ux.BubblePanel({
-       bodyStyle: 'padding-left: 8px;color: #0d2a59',
-       renderTo: 'bubbleCt',
-       html: '<h3>Ext.ux.BubblePanel</h3',
-       width: 200,
-       autoHeight: true
-    });
-    var cp = new Ext.ux.BubblePanel({
-       renderTo: 'bubbleCt',
-       padding: 5,
-       width: 400,
-       autoHeight: true,
-       contentEl: 'bubble-markup'
-    });
-
-    var plainOldPanel = new Ext.Panel({
-        renderTo: 'panelCt',
-       padding: 5,
-       frame: true,
-       width: 400,
-       autoHeight: true,
-       title: 'Plain Old Panel',
-       html: Ext.example.bogusMarkup
-    });
-
-});
-
-