Workaround for Explorer console support

This commit is contained in:
Paulo Gustavo Veiga 2012-07-21 09:46:21 -03:00
parent 71f0c32943
commit 6d7c12ca60

View File

@ -98,4 +98,13 @@ function stackTrace() {
return real_parseFromString.apply(this, arguments);
}
};
}(DOMParser));
}(DOMParser));
// Support for Windows ...
if(!window.console){
console = {
log: function(e){
}
};
}