Blame view
public/ckeditor/plugins/exportpdf/tests/manual/wrongendpoint.html
467 Bytes
180e53f58 Редактор ckeditor |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<div id="editor1"> <p>Hello world!</p> </div> <div id="editor2"> <p>Hello world!</p> </div> <script> exportPdfUtils.initManualTest(); CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', { extraPlugins: 'exportpdf', exportPdf_service: 'https://cksource.com' } ) ); CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', { removePlugins: 'notification', exportPdf_service: 'https://cksource.com' } ) ); </script> |