Sha256: 1ac80fa48efa0e8ff7bf44cf0fcd4abd3d02dce88df23777ce250ed4d2da9c9e
Contents?: true
Size: 912 Bytes
Versions: 88
Compression:
Stored size: 912 Bytes
Contents
/* Copyright (c) 2003-2011, 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. };
Version data entries
88 entries across 85 versions & 9 rubygems