| 12345678910111213141516171819202122232425 |
- var _CFW = _FW.fCreateClass();
- _CFW.prototype = {
- fCreateClass : function() {
- return function() {
- this.fInitialize.apply(this, arguments);
- };
- },
- fInitialize:function(options) {},
- oSms : new CFWSms(),
- oTab : new CFWTab(),
- oTip : new CFWTip(),
- oWin : new CFWWin(),
- oBtn : new CFWBtn(),
- oGt : new CFWGt(),
- oGlt : new CFWGlt(),
- oEGlt : new CFWEGlt(),
- oSGlt : new CFWSGlt(),
- oComm : new CFWComm(),
- oStr : new CFWStr(),
- oDate : new CFWDate(),
- oValid : new CFWValid(),
- oAJax:new CFWAjax()
- };
- var CFW = new _CFW();
|