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).

pull/1335/head
Oscar Perez 2013-01-07 13:24:40 -05:00
parent 042c1c0c98
commit f00dddd09c
1 changed files with 2 additions and 2 deletions

View File

@ -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