notifications.html 377 B

12345678910111213141516171819
  1. <div id="editor1">
  2. <p>Hello world!</p>
  3. </div>
  4. <div id="editor2">
  5. <p>Hello world!</p>
  6. </div>
  7. <script>
  8. exportPdfUtils.initManualTest();
  9. CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', {
  10. extraPlugins: 'exportpdf'
  11. } ) );
  12. CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', {
  13. removePlugins: 'notification'
  14. } ) );
  15. </script>