init.agi 490 B

123456789101112131415161718192021
  1. /*
  2. Web Builder initiation script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Web Builder",
  7. Desc: "The basic Web builder for writing HTML code",
  8. Group: "Office",
  9. IconPath: "Web%20Builder/img/module_icon.png",
  10. Version: "0.1.0",
  11. StartDir: "Web%20Builder/index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "Web%20Builder/index.html",
  14. InitFWSize: [1080, 580],
  15. SupportedExt: [".html",".htm"]
  16. }
  17. //Register the module
  18. registerModule(JSON.stringify(moduleLaunchInfo));