Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / panel / panels.js
diff --git a/examples/panel/panels.js b/examples/panel/panels.js
deleted file mode 100644 (file)
index 572be44..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/*!
- * Ext JS Library 3.2.0
- * Copyright(c) 2006-2010 Ext JS, Inc.
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
-Ext.onReady(function(){
-    var p = new Ext.Panel({
-        title: 'My Panel',
-        collapsible:true,
-        renderTo: 'panel-basic',
-        width:400,
-        html: Ext.example.bogusMarkup
-    });
-
-       // preventBodyReset: true
-       new Ext.Panel({
-               title: 'A Panel with W3C-suggested body-html styling',
-               preventBodyReset: true,
-               renderTo: 'panel-reset-true',
-               width: 400,
-               html: html.join('')
-       });
-
-       // preventBodyReset: false
-       new Ext.Panel({
-               title: 'Same panel as above with preventBodyReset: false',
-               normal: false,
-               renderTo: 'panel-reset-false',
-               width: 400,
-               html: html.join('')
-       });
-});
-
-// Some sample html
-var html = [
-       '<h1>Heading One</h1>',
-       '<h2>Heading Two</h2>',
-       '<p>This is a paragraph with <strong>STRONG</strong>, <em>EMPHASIS</em> and a <a href="#">Link</a></p>',
-       '<table>',
-               '<tr>',
-                       '<td>Table Column One</td>',
-                       '<td>Table Column Two</td>',
-               '</tr>',
-       '</table>',
-       '<ul>',
-               '<li>Un-ordered List-item One</li>',
-               '<li>Un-ordered List-item One</li>',
-       '</ul>',
-       '<ol>',
-               '<li>Ordered List-item One</li>',
-               '<li>Ordered List-item Two</li>',
-       '</ol>',
-       '<blockquote>This is a blockquote</blockquote>'
-];
\ No newline at end of file