/*!
- * Ext JS Library 3.0.0
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
+ * Ext JS Library 3.3.1
+ * Copyright(c) 2006-2010 Sencha Inc.
+ * licensing@sencha.com
+ * http://www.sencha.com/license
*/
-Ext.onReady(function(){\r
- var chooser, btn;\r
-\r
- function insertImage(data){\r
- Ext.DomHelper.append('images', {\r
- tag: 'img', src: data.url, style:'margin:10px;visibility:hidden;'\r
- }, true).show(true).frame();\r
- btn.focus();\r
- };\r
-\r
- function choose(btn){\r
- if(!chooser){\r
- chooser = new ImageChooser({\r
- url:'get-images.php',\r
- width:515,\r
- height:350\r
- });\r
- }\r
- chooser.show(btn.getEl(), insertImage);\r
- };\r
-\r
- btn = new Ext.Button({\r
- text: "Insert Image",\r
- handler: choose,\r
- renderTo: 'buttons'\r
- });\r
-});\r
+Ext.onReady(function(){
+ var chooser, btn;
+
+ function insertImage(data){
+ Ext.DomHelper.append('images', {
+ tag: 'img', src: data.url, style:'margin:10px;visibility:hidden;'
+ }, true).show(true).frame();
+ btn.focus();
+ };
+
+ function choose(btn){
+ if(!chooser){
+ chooser = new ImageChooser({
+ url:'get-images.php',
+ width:515,
+ height:350
+ });
+ }
+ chooser.show(btn.getEl(), insertImage);
+ };
+
+ btn = new Ext.Button({
+ text: "Insert Image",
+ handler: choose,
+ renderTo: 'buttons'
+ });
+});