init.agi 422 B

123456789101112131415161718192021
  1. /*
  2. Simple Paint WebApps
  3. */
  4. //Define the launchInfo for the module
  5. var moduleLaunchInfo = {
  6. Name: "Paint",
  7. Desc: "A basic drawing apps",
  8. Group: "Utilities",
  9. IconPath: "Paint/img/small_icon.png",
  10. Version: "1.0",
  11. StartDir: "Paint/index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "Paint/index.html",
  14. SupportEmb: false,
  15. InitFWSize: [870, 530]
  16. }
  17. //Register the module
  18. registerModule(JSON.stringify(moduleLaunchInfo));