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

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