diff options
| author | Lester Caine <lester@lsces.co.uk> | 2009-11-24 23:57:24 +0000 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2009-11-24 23:57:24 +0000 |
| commit | 8630f2bc4d63b3320f5469d9532a1cba1dddb7a3 (patch) | |
| tree | f3c3122e110458a94aae544164b82fd67f1ae5e0 /_source/plugins/print/plugin.js | |
| parent | e24cb83aa7f7685a4811e5c8d39541bae7b15cb2 (diff) | |
| download | ckeditor-8630f2bc4d63b3320f5469d9532a1cba1dddb7a3.tar.gz ckeditor-8630f2bc4d63b3320f5469d9532a1cba1dddb7a3.tar.bz2 ckeditor-8630f2bc4d63b3320f5469d9532a1cba1dddb7a3.zip | |
ckeditor 3.0.1 'raw' - needs reordering a little, but samples currently functional
Diffstat (limited to '_source/plugins/print/plugin.js')
| -rw-r--r-- | _source/plugins/print/plugin.js | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/_source/plugins/print/plugin.js b/_source/plugins/print/plugin.js new file mode 100644 index 0000000..bd92ce5 --- /dev/null +++ b/_source/plugins/print/plugin.js @@ -0,0 +1,41 @@ +/* +Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license +*/ + +/** + * @file Print Plugin + */ + +CKEDITOR.plugins.add( 'print', +{ + init : function( editor ) + { + var pluginName = 'print'; + + // Register the command. + var command = editor.addCommand( pluginName, CKEDITOR.plugins.print ); + + // Register the toolbar button. + editor.ui.addButton( 'Print', + { + label : editor.lang.print, + command : pluginName + }); + } +} ); + +CKEDITOR.plugins.print = +{ + exec : function( editor ) + { + if ( CKEDITOR.env.opera ) + return; + else if ( CKEDITOR.env.gecko ) + editor.window.$.print(); + else + editor.document.$.execCommand( "Print" ); + }, + canUndo : false, + modes : { wysiwyg : !( CKEDITOR.env.opera ) } // It is imposible to print the inner document in Opera. +}; |
