|
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 16825 |
efrain |
1 |
<div id="editor1">
|
|
|
2 |
</div>
|
|
|
3 |
|
|
|
4 |
<div id="editor2">
|
|
|
5 |
<p>My content and wrapper will be deleted.</p>
|
|
|
6 |
</div>
|
|
|
7 |
|
|
|
8 |
<script>
|
|
|
9 |
exportPdfUtils.initManualTest();
|
|
|
10 |
|
|
|
11 |
CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual' ) );
|
|
|
12 |
|
|
|
13 |
var editor2 = CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual' ) );
|
|
|
14 |
|
|
|
15 |
editor2.on( 'exportPdf', function( evt ) {
|
|
|
16 |
evt.data.html = '';
|
|
|
17 |
}, null, null, 16 );
|
|
|
18 |
</script>
|