init.agi 474 B

12345678910111213141516171819202122
  1. /*
  2. Clock Module Register Script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Clock",
  7. Desc: "A date and time telling tool",
  8. Group: "Utilities",
  9. IconPath: "img/module_icon.png",
  10. Version: "0.1.0",
  11. StartDir: "index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "index.html",
  14. SupportEmb: false,
  15. InitFWSize: [600, 400],
  16. SupportedExt: []
  17. }
  18. //Register the module
  19. console.log("Registering clock module");
  20. registerModule(JSON.stringify(moduleLaunchInfo));