diff options
Diffstat (limited to '_source/plugins/print/plugin.js')
| -rw-r--r-- | _source/plugins/print/plugin.js | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/_source/plugins/print/plugin.js b/_source/plugins/print/plugin.js deleted file mode 100644 index 5f27770..0000000 --- a/_source/plugins/print/plugin.js +++ /dev/null @@ -1,42 +0,0 @@ -/*
-Copyright (c) 2003-2012, 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,
- readOnly : 1,
- modes : { wysiwyg : !( CKEDITOR.env.opera ) } // It is imposible to print the inner document in Opera.
-};
|
