Workaround for Explorer console support

main
Paulo Gustavo Veiga 2012-07-21 09:46:21 -03:00
parent 71f0c32943
commit 6d7c12ca60
1 changed files with 10 additions and 1 deletions

View File

@ -99,3 +99,12 @@ function stackTrace() {
}
};
}(DOMParser));
// Support for Windows ...
if(!window.console){
console = {
log: function(e){
}
};
}