Skip to content

Commit

Permalink
Merge pull request #1318 from freethejazz/master
Browse files Browse the repository at this point in the history
Safeguard IE against console.log
  • Loading branch information
maksimr committed Feb 19, 2015
2 parents e21ac6a + 0b5ff8f commit f723f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/debug.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
if (info.dump && window.console) window.console.log(info.dump);
},
complete: function() {
window.console.log('Skipped ' + this.skipped + ' tests');
if (window.console) window.console.log('Skipped ' + this.skipped + ' tests');
},
store: function() {},
skipped: 0,
Expand Down

0 comments on commit f723f7a

Please sign in to comment.