init.agi 508 B

123456789101112131415161718192021222324
  1. /*
  2. Camera App Register Script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Browser",
  7. Desc: "Just an iframe",
  8. Group: "Media",
  9. IconPath: "Browser/img/module_icon.png",
  10. Version: "1.0",
  11. StartDir: "Browser/index.html",
  12. SupportFW: true,
  13. InitFWSize: [1024, 600],
  14. LaunchFWDir: "Browser/index.html",
  15. SupportEmb: true,
  16. InitEmbSize: [360, 200],
  17. LaunchEmb: "Browser/embedded.html",
  18. SupportedExt: [".wapp"]
  19. }
  20. //Register the module
  21. registerModule(JSON.stringify(moduleLaunchInfo));