viewer.html 933 B

12345678910111213141516171819202122232425262728
  1. <html>
  2. <head>
  3. <title>Loading File...</title>
  4. <script src="../script/jquery.min.js"></script>
  5. <script src="../script/ao_module.js"></script>
  6. </head>
  7. <body>
  8. <script>
  9. //Check and load the file
  10. var infile = ao_module_loadInputFiles();
  11. if (infile == null){
  12. //back to index
  13. window.location.href = "index.html";
  14. }else{
  15. //OK! Read the file content
  16. ao_module_setWindowTitle(infile[0].filename);
  17. //Request tempShare API (WIP)
  18. //Get share link
  19. //Redirect to office embedded interface
  20. window.location.href = "https://view.officeapps.live.com/op/embed.aspx?src=https://pptx.js.org/pages/Sample_demo1.pptx"
  21. }
  22. //https://view.officeapps.live.com/op/embed.aspx?src=
  23. </script>
  24. </body>
  25. </html>