X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/9921992e940cf9c1cc53715098233e23665d8f94..bbe3a85e8006750d52bd591086c8b196714ef759:/project/static/js/app.js?ds=sidebyside diff --git a/project/static/js/app.js b/project/static/js/app.js index e8875c93..2210654b 100644 --- a/project/static/js/app.js +++ b/project/static/js/app.js @@ -3,6 +3,14 @@ var editor; var panel_hooks; +// prevent a console.log from blowing things up if we are on a browser that +// does not support it +if (typeof console === 'undefined') { + window.console = {} ; + console.log = console.info = console.warn = console.error = function(){}; +} + + (function(){ // Classes var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;