mirror of
https://github.com/photonstorm/phaser
synced 2024-11-16 17:58:23 +00:00
12 lines
346 B
JavaScript
12 lines
346 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
var ClientWidth = function ()
|
|
{
|
|
return Math.max(window.innerWidth, document.documentElement.clientWidth);
|
|
};
|
|
|
|
module.exports = ClientWidth;
|