Module.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:0k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.app.Module = function(config){
  2.     Ext.apply(this, config);
  3.     Ext.app.Module.superclass.constructor.call(this);
  4.     this.init();
  5. }
  6. Ext.extend(Ext.app.Module, Ext.util.Observable, {
  7.     init : Ext.emptyFn
  8. });