73f163429952c46fb7908b4154b478f8d9067c0f.svn-base 326 B

123456789101112131415
  1. /*
  2. * Ext JS Library 2.0 Copyright(c) 2006-2007, Ext JS, LLC. licensing@extjs.com
  3. *
  4. * http://extjs.com/license
  5. */
  6. Ext.app.Module = function(config) {
  7. Ext.apply(this, config);
  8. Ext.app.Module.superclass.constructor.call(this);
  9. this.init();
  10. }
  11. Ext.extend(Ext.app.Module, Ext.util.Observable, {
  12. init : Ext.emptyFn
  13. });