X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..6a7e4474cba9d8be4b2ec445e10f1691f7277c50:/examples/view/chooser-example.js diff --git a/examples/view/chooser-example.js b/examples/view/chooser-example.js index 7910fafd..8992632c 100644 --- a/examples/view/chooser-example.js +++ b/examples/view/chooser-example.js @@ -1,33 +1,33 @@ /*! - * Ext JS Library 3.1.1 - * Copyright(c) 2006-2010 Ext JS, LLC + * 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 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' - }); -}); +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' + }); +});