Html.js 290 B

12345678
  1. MWF.xDesktop.requireApp("process.Xform", "$Module", null, false);
  2. MWF.xApplication.process.Xform.Html = MWF.APPHtml = new Class({
  3. Extends: MWF.APP$Module,
  4. load: function(){
  5. this.node.insertAdjacentHTML("beforebegin", this.json.text);
  6. this.node.destroy();
  7. }
  8. });