123456789101112131415161718192021222324252627 |
- /*
- MS Office Viewer
- Copyright 2021 ArozOS Project
-
- Simple adapter for adapting the Office 365 online viewer API to ArozOS
- */
- //Define the launchInfo for the module
- var moduleLaunchInfo = {
- Name: "Office Viewer",
- Desc: "Office File Viewer Adapter",
- Group: "office",
- IconPath: "Office Viewer/img/icon.png",
- Version: "1.0",
- StartDir: "Office Viewer/index.html",
- SupportFW: true,
- LaunchFWDir: "Office Viewer/index.html",
- SupportEmb: true,
- LaunchEmb: "Office Viewer/viewer.html",
- InitFWSize: [1080, 580],
- SupportedExt: [".doc", ".docx", ".xlsx",".xls",".pptx", ".ppt"]
- }
- //Register the module
- registerModule(JSON.stringify(moduleLaunchInfo));
|