Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / examples / desktop / js / Module.js
1 /*!
2  * Ext JS Library 3.2.0
3  * Copyright(c) 2006-2010 Ext JS, Inc.
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 Ext.app.Module = function(config){
8     Ext.apply(this, config);
9     Ext.app.Module.superclass.constructor.call(this);
10     this.init();
11 }
12
13 Ext.extend(Ext.app.Module, Ext.util.Observable, {
14     init : Ext.emptyFn
15 });