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.
20 lines
475 B
HTML
20 lines
475 B
HTML
<div id="editor">
|
|
<p>Foo bar</p>
|
|
</div>
|
|
|
|
<div id="tokenValue" style="word-break:break-all;border:1px solid red;"></div>
|
|
|
|
<script>
|
|
exportPdfUtils.initManualTest();
|
|
|
|
var editor = CKEDITOR.replace( 'editor', exportPdfUtils.getDefaultConfig( 'manual', {
|
|
exportPdf_tokenUrl: ''
|
|
} ) );
|
|
|
|
editor.on( 'exportPdf', function( evt ) {
|
|
var value = CKEDITOR.document.findOne( '#tokenValue' );
|
|
|
|
value.setHtml( evt.data.token );
|
|
}, null, null, 17 );
|
|
</script>
|