123456789101112131415 |
- /*
- * Ext JS Library 2.0 Copyright(c) 2006-2007, Ext JS, LLC. licensing@extjs.com
- *
- * http://extjs.com/license
- */
- Ext.app.Module = function(config) {
- Ext.apply(this, config);
- Ext.app.Module.superclass.constructor.call(this);
- this.init();
- }
- Ext.extend(Ext.app.Module, Ext.util.Observable, {
- init : Ext.emptyFn
- });
|