X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=plugins%2Fprint%2Fplugin.js;fp=plugins%2Fprint%2Fplugin.js;h=0000000000000000000000000000000000000000;hb=7cd80714081a8ffdf4a1a8d2c72f120ed5ef3d6d;hp=41bd4cb15675db7baee4a7e7b07ad8d316505653;hpb=8761695d9b70afe75905deaac88f78c1f8aeb32d;p=ckeditor.git diff --git a/plugins/print/plugin.js b/plugins/print/plugin.js deleted file mode 100644 index 41bd4cb..0000000 --- a/plugins/print/plugin.js +++ /dev/null @@ -1,6 +0,0 @@ -/* -Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -CKEDITOR.plugins.add('print',{init:function(a){var b='print',c=a.addCommand(b,CKEDITOR.plugins.print);a.ui.addButton('Print',{label:a.lang.print,command:b});}});CKEDITOR.plugins.print={exec:function(a){if(CKEDITOR.env.opera)return;else if(CKEDITOR.env.gecko)a.window.$.print();else a.document.$.execCommand('Print');},canUndo:false,modes:{wysiwyg:!CKEDITOR.env.opera}};