s4m_ur4i Posted October 24, 2016 Share Posted October 24, 2016 Just in case nobody is aware of: With newest Phaser I got a warning by using Chromium @55+phaser.js:60978 Navigator.pointerEnabled is a non-standard API added for experiments only. It will be removed in near future. regards Link to comment Share on other sites More sharing options...
rich Posted October 24, 2016 Share Posted October 24, 2016 Already fixed in dev branch. And yes, it's just a warning, so although annoying it doesn't actually 'break' anything. If you want to patch it locally, because it's annoying, then just edit the Device.js file, find the pointerEnabled test in the _checkInput function and change it to this: if (window.PointerEvent || window.MSPointerEvent || window.navigator.msPointerEnabled || window.navigator.pointerEnabled) { device.mspointer = true; } s4m_ur4i 1 Link to comment Share on other sites More sharing options...
s4m_ur4i Posted October 24, 2016 Author Share Posted October 24, 2016 Thanks a lot Rich! Link to comment Share on other sites More sharing options...
Recommended Posts