mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
/**
|
|
* Also fix for the absent console in IE9
|
|
*/
|
|
if (!window.console)
|
|
{
|
|
window.console = {};
|
|
window.console.log = window.console.assert = function(){};
|
|
window.console.warn = window.console.assert = function(){};
|
|
}
|