commit extjs-2.2.1
[extjs.git] / examples / desktop / js / Module.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.app.Module = function(config){\r
10     Ext.apply(this, config);\r
11     Ext.app.Module.superclass.constructor.call(this);\r
12     this.init();\r
13 }\r
14 \r
15 Ext.extend(Ext.app.Module, Ext.util.Observable, {\r
16     init : Ext.emptyFn\r
17 });