UNPKG

browsernizr

Version:

Modernizr wrapper for use with browserify

20 lines (18 loc) 586 B
/*! { "name": "Pointer Lock API", "property": "pointerlock", "notes": [{ "name": "MDN Docs", "href": "https://developer.mozilla.org/en-US/docs/API/Pointer_Lock_API" }], "builderAliases": ["pointerlock_api"] } !*/ /* DOC Detects support the pointer lock API which allows you to lock the mouse cursor to the browser window. */ var Modernizr = require('./../lib/Modernizr.js'); var prefixed = require('./../lib/prefixed.js'); // https://developer.mozilla.org/en-US/docs/API/Pointer_Lock_API Modernizr.addTest('pointerlock', !!prefixed('exitPointerLock', document));