Module.js 341 B

123456789101112131415
  1. /*!
  2. * Ext JS Library 3.3.1
  3. * Copyright(c) 2006-2010 Sencha Inc.
  4. * licensing@sencha.com
  5. * http://www.sencha.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. Ext.extend(Ext.app.Module, Ext.util.Observable, {
  13. init : Ext.emptyFn
  14. });