12345678910111213141516171819202122232425262728 |
- <html>
- <head>
- <title>Loading File...</title>
- <script src="../script/jquery.min.js"></script>
- <script src="../script/ao_module.js"></script>
- </head>
- <body>
- <script>
- //Check and load the file
- var infile = ao_module_loadInputFiles();
- if (infile == null){
- //back to index
- window.location.href = "index.html";
- }else{
- //OK! Read the file content
- ao_module_setWindowTitle(infile[0].filename);
- //Request tempShare API (WIP)
- //Get share link
- //Redirect to office embedded interface
- window.location.href = "https://view.officeapps.live.com/op/embed.aspx?src=https://pptx.js.org/pages/Sample_demo1.pptx"
- }
- //https://view.officeapps.live.com/op/embed.aspx?src=
- </script>
- </body>
- </html>
|