mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Added polyfils for IE console object.
This commit is contained in:
parent
e88768d621
commit
0486b610c0
@ -1,15 +1,13 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
(function () {
|
(function () {
|
||||||
|
|
||||||
if (!window.console) {
|
window.console = window.console || {};
|
||||||
window.console = {};
|
window.console.log = window.console.log || function(){};
|
||||||
}
|
window.console.group = window.console.group || function(){};
|
||||||
|
window.console.groupEnd = window.console.groupEnd || function(){};
|
||||||
if (!window.console.debug) {
|
window.console.debug = window.console.debug || function(){};
|
||||||
window.console.debug = function () {
|
window.console.warn = window.console.warn || function(){};
|
||||||
|
window.console.assert = window.console.assert || function(){};
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
window.alert = function (message) {
|
window.alert = function (message) {
|
||||||
window.Messenger().post(message);
|
window.Messenger().post(message);
|
||||||
|
Loading…
Reference in New Issue
Block a user