Tab$Content.js 711 B

123456789101112131415161718192021222324
  1. MWF.xApplication.portal.PageDesigner.Module.Tab$Content = MWF.PCTab$Content = new Class({
  2. Extends: MWF.FCTab$Content,
  3. Implements: [Options, Events],
  4. options: {
  5. "style": "default",
  6. "propertyPath": "../x_component_portal_PageDesigner/Module/Tab$Content/tab$Content.html",
  7. "actions": []
  8. },
  9. initialize: function(tab, page, options){
  10. this.setOptions(options);
  11. this.path = "../x_component_portal_PageDesigner/Module/Tab$Content/";
  12. this.cssPath = "../x_component_portal_PageDesigner/Module/Tab$Content/"+this.options.style+"/css.wcss";
  13. this._loadCss();
  14. this.moduleType = "container";
  15. this.moduleName = "tab$Content";
  16. this.form = tab.form;
  17. this.tab = tab;
  18. this.page = page;
  19. }
  20. });