mirror of
https://github.com/photonstorm/phaser
synced 2025-03-07 00:37:19 +00:00
14 lines
372 B
JavaScript
14 lines
372 B
JavaScript
/**
|
|
* @copyright 2016 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* 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(){};
|
|
}
|