mirror of
https://github.com/photonstorm/phaser
synced 2025-01-08 03:08:50 +00:00
13 lines
346 B
JavaScript
13 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;
|