Iframe.js 655 B

12345678910111213141516171819202122
  1. MWF.xApplication.portal.PageDesigner.Module.Iframe = MWF.PCIframe = new Class({
  2. Extends: MWF.FCIframe,
  3. Implements: [Options, Events],
  4. options: {
  5. "style": "default",
  6. "propertyPath": "../x_component_portal_PageDesigner/Module/Iframe/iframe.html"
  7. },
  8. initialize: function(form, options){
  9. this.setOptions(options);
  10. this.path = "../x_component_portal_PageDesigner/Module/Iframe/";
  11. this.cssPath = "../x_component_portal_PageDesigner/Module/Iframe/"+this.options.style+"/css.wcss";
  12. this._loadCss();
  13. this.moduleType = "element";
  14. this.moduleName = "iframe";
  15. this.form = form;
  16. this.container = null;
  17. this.containerNode = null;
  18. }
  19. });