X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/panel/panels.js?ds=inline diff --git a/examples/panel/panels.js b/examples/panel/panels.js deleted file mode 100644 index 572be44e..00000000 --- a/examples/panel/panels.js +++ /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 = [ - '
This is a paragraph with STRONG, EMPHASIS and a Link
', - 'Table Column One | ', - 'Table Column Two | ', - '
This is a blockquote' -]; \ No newline at end of file