init.agi 523 B

12345678910111213141516171819202122
  1. /*
  2. On Screen Keyboard
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "OnScreenKeyboard",
  7. Desc: "On Screen Keyboard for touch displays that don't have on screen keyboard",
  8. Group: "IME",
  9. IconPath: "OnScreenKeyboard/img/small_icon.png",
  10. Version: "0.1.0",
  11. StartDir: "OnScreenKeyboard/index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "OnScreenKeyboard/index.html",
  14. SupportEmb: false,
  15. InitFWSize: [776, 290],
  16. SupportedExt: []
  17. }
  18. //Register the module
  19. registerModule(JSON.stringify(moduleLaunchInfo));