mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-18 12:30:02 +02:00
Committed CKEditor 3.2.1 stock version
This commit is contained in:
41
phpgwapi/js/ckeditor3/_source/plugins/print/plugin.js
Normal file
41
phpgwapi/js/ckeditor3/_source/plugins/print/plugin.js
Normal file
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
Copyright (c) 2003-2010, 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.
|
||||
};
|
Reference in New Issue
Block a user