revieweditor.html 1.1 KB

1234567891011121314151617181920212223242526
  1. <!DOCTYPE HTML>
  2. <html style="width:100%; height:100%; margin:0px; padding:0px" xml:lang="en" lang="en">
  3. <head>
  4. <!--
  5. This HTML page is meant to bootstrap the webodf based ODF editor. This
  6. is not the HTML page hosting any collaborative editing.
  7. It will run on a standard HTTP server and as usual the webodf magic
  8. happens client-side in your browser.
  9. This page is meant to be served out of a webodf build directory.
  10. -->
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  12. <title>Review Editor</title>
  13. <!-- editor: start -->
  14. <script src="wodotexteditor/wodotexteditor.js" type="text/javascript" charset="utf-8"></script>
  15. <script src="FileSaver.js" type="text/javascript" charset="utf-8"></script>
  16. <script src="revieweditor.js" type="text/javascript" charset="utf-8"></script>
  17. <!-- editor: end -->
  18. </head>
  19. <body style="width:100%; height:100%; margin:0px; padding:0px" onload="createReviewEditor();">
  20. <div id="editorContainer" style="width:100%; height:100%; margin:0px; padding:0px">
  21. </div>
  22. </body>
  23. </html>