mirror of
https://github.com/ONLYOFFICE/onlyoffice.github.io.git
synced 2026-02-10 18:05:06 +08:00
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
/**
|
|
*
|
|
* (c) Copyright Ascensio System SIA 2020
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
(function(window, undefined) {
|
|
|
|
let message = "This plugin is not supported by IE";
|
|
window.oncontextmenu = function(e) {
|
|
if (e.preventDefault)
|
|
e.preventDefault();
|
|
if (e.stopPropagation)
|
|
e.stopPropagation();
|
|
return false;
|
|
};
|
|
|
|
|
|
window.Asc.plugin.init = function() {
|
|
document.getElementById('div_settings').style.display = "none";
|
|
let div = document.createElement("div");
|
|
div.classList.add('div_message')
|
|
div.innerHTML = "<p id='message' style='text-align:center; font-size:20pt;'>" + message + "<\/p>";
|
|
$(div).insertAfter(("#div_settings"));
|
|
};
|
|
|
|
window.Asc.plugin.onThemeChanged = function(theme)
|
|
{
|
|
window.Asc.plugin.onThemeChangedBase(theme);
|
|
};
|
|
|
|
window.Asc.plugin.button = function(id){
|
|
this.executeCommand("close", "");
|
|
};
|
|
|
|
|
|
window.Asc.plugin.onTranslate = function(){
|
|
var elem = document.getElementById("message");
|
|
if (elem) {
|
|
elem.innerHTML = message = window.Asc.plugin.tr(message);
|
|
}
|
|
};
|
|
|
|
})(window, undefined); |