Module.js
资源名称:a.rar [点击查看]
上传用户:aa118c
上传日期:2021-05-13
资源大小:4785k
文件大小:0k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

HTML/CSS

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