init.agi 417 B

123456789101112131415161718192021
  1. /*
  2. Unit Testing Module for AGI
  3. */
  4. //Define the launchInfo for the module
  5. var moduleLaunchInfo = {
  6. Name: "Speedtest",
  7. Group: "Development",
  8. IconPath: "Speedtest/img/small_icon.png",
  9. Version: "1.0",
  10. StartDir: "Speedtest/index.html"
  11. SupportFW: true,
  12. LaunchFWDir: "Speedtest/index.html",
  13. SupportEmb: false,
  14. InitFWSize: [600, 220]
  15. }
  16. //Register the module
  17. registerModule(JSON.stringify(moduleLaunchInfo));