make sure the README will appear on github
[extjs.git] / examples / panel / panels.js
1 /*\r
2  * Ext JS Library 2.2.1\r
3  * Copyright(c) 2006-2009, Ext JS, LLC.\r
4  * licensing@extjs.com\r
5  * \r
6  * http://extjs.com/license\r
7  */\r
8 \r
9 Ext.onReady(function(){\r
10     var p = new Ext.Panel({\r
11         title: 'My Panel',\r
12         collapsible:true,\r
13         renderTo: 'container',\r
14         width:400,\r
15         html: Ext.example.bogusMarkup\r
16     });\r
17 });