Moved console existence check before the variable is used. This was causing a crash in Internet Explorer when the console was not enabled (console is off by default).
parent
042c1c0c98
commit
f00dddd09c
|
@ -23,10 +23,10 @@
|
||||||
window.html10n = (function(window, document, undefined) {
|
window.html10n = (function(window, document, undefined) {
|
||||||
var console = window.console
|
var console = window.console
|
||||||
function interceptConsole(method){
|
function interceptConsole(method){
|
||||||
var original = console[method]
|
|
||||||
|
|
||||||
if (!console) return function() {}
|
if (!console) return function() {}
|
||||||
|
|
||||||
|
var original = console[method]
|
||||||
|
|
||||||
// do sneaky stuff
|
// do sneaky stuff
|
||||||
if (original.bind){
|
if (original.bind){
|
||||||
// Do this for normal browsers
|
// Do this for normal browsers
|
||||||
|
|
Loading…
Reference in New Issue