Package.js 762 B

1234567891011121314151617
  1. MWF.xDesktop.requireApp("portal.PageDesigner", "Module.Package", null, false);
  2. MWF.xApplication.portal.SourceDesigner = MWF.xApplication.portal.SourceDesigner || {};
  3. MWF.xApplication.portal.SourceDesigner.Module = MWF.xApplication.portal.SourceDesigner.Module || {};
  4. MWF.xApplication.portal.SourceDesigner.Module.Page = MWF.PSCPage = new Class({
  5. Extends: MWF.PCPage,
  6. options: {
  7. "propertyPath": "/x_component_portal_SourceDesigner/Module/Page/page.html"
  8. },
  9. initializeBase: function(options){
  10. this.setOptions(options);
  11. this.path = "/x_component_portal_SourceDesigner/Module/Page/";
  12. this.cssPath = "/x_component_portal_SourceDesigner/Module/Page/"+this.options.style+"/css.wcss";
  13. this._loadCss();
  14. }
  15. });