Blame view

public/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.html 545 Bytes
180e53f58   Андрей Ларионов   Редактор ckeditor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <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' ) );
  
  	editor.on( 'instanceReady', function() {
  		if ( !CKEDITOR.config.exportPdf_tokenUrl ) {
  			bender.ignore();
  		}
  	} );
  
  	editor.on( 'exportPdf', function( evt ) {
  		var value = CKEDITOR.document.findOne( '#tokenValue' );
  
  		value.setHtml( evt.data.token );
  	}, null, null, 17 );
  </script>