| 1234567891011121314151617181920212223242526272829303132 |
- /**
- * plugin.js
- *
- * Copyright, Moxiecode Systems AB
- * Released under LGPL License.
- *
- * License: http://www.tinymce.com/license
- * Contributing: http://www.tinymce.com/contributing
- */
- /*global tinymce:true */
- tinymce.PluginManager.add('print', function(editor) {
- editor.addCommand('mcePrint', function() {
- editor.getWin().print();
- });
- editor.addButton('print', {
- title: 'Print',
- cmd: 'mcePrint'
- });
- editor.addShortcut('Ctrl+P', '', 'mcePrint');
- editor.addMenuItem('print', {
- text: 'Print',
- cmd: 'mcePrint',
- icon: 'print',
- shortcut: 'Ctrl+P',
- context: 'file'
- });
- });
|