123456789101112131415161718192021222324 |
- /*
- Camera App Register Script
- */
- //Setup the module information
- var moduleLaunchInfo = {
- Name: "Browser",
- Desc: "Just an iframe",
- Group: "Media",
- IconPath: "Browser/img/module_icon.png",
- Version: "1.0",
- StartDir: "Browser/index.html",
- SupportFW: true,
- InitFWSize: [1024, 600],
- LaunchFWDir: "Browser/index.html",
- SupportEmb: true,
- InitEmbSize: [360, 200],
- LaunchEmb: "Browser/embedded.html",
- SupportedExt: [".wapp"]
- }
- //Register the module
- registerModule(JSON.stringify(moduleLaunchInfo));
|