UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

30 lines (25 loc) 953 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ /** * Sets the touch-action property on the canvas style. Can be used to disable default browser touch actions. * * @function Phaser.Display.Canvas.TouchAction * @since 3.0.0 * * @param {HTMLCanvasElement} canvas - The canvas element to have the style applied to. * @param {string} [value='none'] - The touch action value to set on the canvas. Set to `none` to disable touch actions. * * @return {HTMLCanvasElement} The canvas element. */ var TouchAction = function (canvas, value) { if (value === undefined) { value = 'none'; } canvas.style['msTouchAction'] = value; canvas.style['ms-touch-action'] = value; canvas.style['touch-action'] = value; return canvas; }; module.exports = TouchAction;