You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
488 B
HTML
22 lines
488 B
HTML
<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>
|