Change tabs to spaces

This commit is contained in:
Oleg Korshul
2020-09-07 00:08:33 +03:00
parent 6baac76b58
commit 7fb14c9b0b

View File

@ -34,17 +34,17 @@
window.Asc = window.Asc || {};
window.Asc.plugin = {};
// ie channel
window.Asc.plugin.ie_channel = null;
window.Asc.plugin.ie_channel_check = function(e) {
var uagent = navigator.userAgent.toLowerCase();
if (uagent.indexOf("msie") > -1 || uagent.indexOf("trident") > -1)
{
if (e.ports && e.ports[0])
this.ie_channel = e.ports[0];
}
};
// ie channel
window.Asc.plugin.ie_channel = null;
window.Asc.plugin.ie_channel_check = function(e) {
var uagent = navigator.userAgent.toLowerCase();
if (uagent.indexOf("msie") > -1 || uagent.indexOf("trident") > -1)
{
if (e.ports && e.ports[0])
this.ie_channel = e.ports[0];
}
};
window.Asc.plugin.tr_init = false;
window.Asc.plugin.tr = function(val) { return val; }