mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
10 lines
227 B
JavaScript
10 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(){};
|
||
|
}
|