Files
Modernizr/feature-detects/gamepad.js
Markel F 3b0eb2be8c Add caniuse mappings (#2535)
* Add caniuse mappings

Co-Authored-By: PavMel <pavmel@users.noreply.github.com>

* Updated some caniuse strings

Co-authored-by: PavMel <pavmel@users.noreply.github.com>
2020-04-17 17:43:44 +02:00

23 lines
588 B
JavaScript

/*!
{
"name": "GamePad API",
"property": "gamepads",
"caniuse": "gamepad",
"authors": ["Eric Bidelman"],
"tags": ["media"],
"notes": [{
"name": "W3C Spec",
"href": "https://www.w3.org/TR/gamepad/"
}, {
"name": "HTML5 Rocks Tutorial",
"href": "https://www.html5rocks.com/en/tutorials/doodles/gamepad/#toc-featuredetect"
}]
}
!*/
/* DOC
Detects support for the Gamepad API, for access to gamepads and controllers.
*/
define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
Modernizr.addTest('gamepads', !!prefixed('getGamepads', navigator));
});