PageRenderTime 34ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/editors/tiny_mce_3_4_3_1/plugins/preview/example.html

#
HTML | 28 lines | 23 code | 4 blank | 1 comment | 0 complexity | 9b9290408ae10fa29ec29db60682be91 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <script language="javascript" src="../../tiny_mce_popup.js"></script>
  4. <script type="text/javascript" src="jscripts/embed.js"></script>
  5. <script type="text/javascript">
  6. tinyMCEPopup.onInit.add(function(ed) {
  7. var dom = tinyMCEPopup.dom;
  8. // Load editor content_css
  9. tinymce.each(ed.settings.content_css.split(','), function(u) {
  10. dom.loadCSS(ed.documentBaseURI.toAbsolute(u));
  11. });
  12. // Place contents inside div container
  13. dom.setHTML('content', ed.getContent());
  14. });
  15. </script>
  16. <title>Example of a custom preview page</title>
  17. </head>
  18. <body>
  19. Editor contents: <br />
  20. <div id="content">
  21. <!-- Gets filled with editor contents -->
  22. </div>
  23. </body>
  24. </html>