X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fprint%2Fplugin.js;fp=_source%2Fplugins%2Fprint%2Fplugin.js;h=d008785ebdd6de44b8c5c27fbc5aace561ca2352;hb=ea7e3453c7b0f023b050aca6d9f83ab372860d91;hp=0000000000000000000000000000000000000000;hpb=b93873b6532ee7515fb0d6f8b73176c44fad28f7;p=ckeditor.git diff --git a/_source/plugins/print/plugin.js b/_source/plugins/print/plugin.js new file mode 100644 index 0000000..d008785 --- /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. +};