SettingEmpty.js 708 B

12345678910111213141516
  1. MWF.xApplication.Collect = MWF.xApplication.Collect || {};
  2. MWF.xApplication.Collect.options = MWF.xApplication.Collect.options || {};
  3. MWF.xDesktop.requireApp("Collect", "MainInContainer", null, false);
  4. MWF.xDesktop.requireApp("Setting", "Document", null, false);
  5. MWF.xApplication.Setting.EmptyDocument = new Class({
  6. Extends: MWF.xApplication.Setting.Document,
  7. load: function(){
  8. // this.node = new Element("div", {"styles": {"overflow": "hidden", "padding-bottom": "80px"}}).inject(this.contentAreaNode);
  9. debugger;
  10. this.node = new MWF.xApplication.Collect.MainInContainer(this.app.desktop, {}, this.contentAreaNode, this.contentAreaNode);
  11. this.node.load();
  12. }
  13. });