integarting admin dashboard
This commit is contained in:
7
public/Dashboard/vendors/tinymce/plugins/print/index.js
vendored
Normal file
7
public/Dashboard/vendors/tinymce/plugins/print/index.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
// Exports the "print" plugin for usage with module loaders
|
||||
// Usage:
|
||||
// CommonJS:
|
||||
// require('tinymce/plugins/print')
|
||||
// ES2015:
|
||||
// import 'tinymce/plugins/print'
|
||||
require('./plugin.js');
|
53
public/Dashboard/vendors/tinymce/plugins/print/plugin.js
vendored
Normal file
53
public/Dashboard/vendors/tinymce/plugins/print/plugin.js
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
/**
|
||||
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||
* Licensed under the LGPL or a commercial license.
|
||||
* For LGPL see License.txt in the project root for license information.
|
||||
* For commercial licenses see https://www.tiny.cloud/
|
||||
*
|
||||
* Version: 5.7.0 (2021-02-10)
|
||||
*/
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
var global = tinymce.util.Tools.resolve('tinymce.PluginManager');
|
||||
|
||||
var global$1 = tinymce.util.Tools.resolve('tinymce.Env');
|
||||
|
||||
var register = function (editor) {
|
||||
editor.addCommand('mcePrint', function () {
|
||||
if (global$1.browser.isIE()) {
|
||||
editor.getDoc().execCommand('print', false, null);
|
||||
} else {
|
||||
editor.getWin().print();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
var register$1 = function (editor) {
|
||||
editor.ui.registry.addButton('print', {
|
||||
icon: 'print',
|
||||
tooltip: 'Print',
|
||||
onAction: function () {
|
||||
return editor.execCommand('mcePrint');
|
||||
}
|
||||
});
|
||||
editor.ui.registry.addMenuItem('print', {
|
||||
text: 'Print...',
|
||||
icon: 'print',
|
||||
onAction: function () {
|
||||
return editor.execCommand('mcePrint');
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
function Plugin () {
|
||||
global.add('print', function (editor) {
|
||||
register(editor);
|
||||
register$1(editor);
|
||||
editor.addShortcut('Meta+P', '', 'mcePrint');
|
||||
});
|
||||
}
|
||||
|
||||
Plugin();
|
||||
|
||||
}());
|
9
public/Dashboard/vendors/tinymce/plugins/print/plugin.min.js
vendored
Normal file
9
public/Dashboard/vendors/tinymce/plugins/print/plugin.min.js
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
/**
|
||||
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
||||
* Licensed under the LGPL or a commercial license.
|
||||
* For LGPL see License.txt in the project root for license information.
|
||||
* For commercial licenses see https://www.tiny.cloud/
|
||||
*
|
||||
* Version: 5.7.0 (2021-02-10)
|
||||
*/
|
||||
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),e=tinymce.util.Tools.resolve("tinymce.Env");n.add("print",function(n){var t,i;(t=n).addCommand("mcePrint",function(){e.browser.isIE()?t.getDoc().execCommand("print",!1,null):t.getWin().print()}),(i=n).ui.registry.addButton("print",{icon:"print",tooltip:"Print",onAction:function(){return i.execCommand("mcePrint")}}),i.ui.registry.addMenuItem("print",{text:"Print...",icon:"print",onAction:function(){return i.execCommand("mcePrint")}}),n.addShortcut("Meta+P","","mcePrint")})}();
|
Reference in New Issue
Block a user