mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 08:19:45 +01:00
Wait till common translations are loaded then ask for IE browser compatibility
This commit is contained in:
parent
931100c2ac
commit
7289e80e92
@ -65,12 +65,6 @@
|
|||||||
opacity: 0.7,
|
opacity: 0.7,
|
||||||
axis: 'y'
|
axis: 'y'
|
||||||
});
|
});
|
||||||
|
|
||||||
// warn user about using IE not compatibilities
|
|
||||||
if (navigator && navigator.userAgent.match(/Trident|msie/ig))
|
|
||||||
{
|
|
||||||
egw.message(egw.lang('Browser %1 %2 is not recommended. You may experience issues and not working features. Please use the latest version of Chrome, Firefox or Edge. Thank You!', 'IE',''), 'info', 'browser:ie:warning');
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -216,6 +210,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
_sideboxSizeCallback(_sideboxStartSize);
|
_sideboxSizeCallback(_sideboxStartSize);
|
||||||
|
|
||||||
|
// warn user about using IE not compatibilities
|
||||||
|
// we need to wait until common translations are loaded
|
||||||
|
egw.langRequireApp(window, 'common', function()
|
||||||
|
{
|
||||||
|
if (navigator && navigator.userAgent.match(/Trident|msie/ig))
|
||||||
|
{
|
||||||
|
egw.message(egw.lang('Browser %1 %2 is not recommended. You may experience issues and not working features. Please use the latest version of Chrome, Firefox or Edge. Thank You!', 'IE',''), 'info', 'browser:ie:warning');
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user