fw.js 545 B

12345678910111213141516171819202122232425
  1. var _CFW = _FW.fCreateClass();
  2. _CFW.prototype = {
  3. fCreateClass : function() {
  4. return function() {
  5. this.fInitialize.apply(this, arguments);
  6. };
  7. },
  8. fInitialize:function(options) {},
  9. oSms : new CFWSms(),
  10. oTab : new CFWTab(),
  11. oTip : new CFWTip(),
  12. oWin : new CFWWin(),
  13. oBtn : new CFWBtn(),
  14. oGt : new CFWGt(),
  15. oGlt : new CFWGlt(),
  16. oEGlt : new CFWEGlt(),
  17. oSGlt : new CFWSGlt(),
  18. oComm : new CFWComm(),
  19. oStr : new CFWStr(),
  20. oDate : new CFWDate(),
  21. oValid : new CFWValid(),
  22. oAJax:new CFWAjax()
  23. };
  24. var CFW = new _CFW();