init.agi 529 B

1234567891011121314151617181920212223
  1. /*
  2. Photo Module Register Script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Photo",
  7. Desc: "The worst photo webapp",
  8. Group: "Media",
  9. IconPath: "Photo/img/module_icon.png",
  10. Version: "0.0.1",
  11. StartDir: "Photo/index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "Photo/index.html",
  14. SupportEmb: true,
  15. LaunchEmb: "Photo/embedded.html",
  16. InitFWSize: [900, 550],
  17. InitEmbSize: [900, 500],
  18. SupportedExt: [".jpg",".jpeg",".gif",".png"]
  19. }
  20. //Register the module
  21. registerModule(JSON.stringify(moduleLaunchInfo));