mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
18 lines
503 B
JavaScript
18 lines
503 B
JavaScript
/*!
|
|
{
|
|
"name": "Ambient Light Events",
|
|
"property": "ambientlight",
|
|
"caniuse": "ambient-light",
|
|
"notes": [{
|
|
"name": "W3C Spec",
|
|
"href": "https://www.w3.org/TR/ambient-light/"
|
|
}]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for the API that provides information about the ambient light levels, as detected by the device's light detector, in terms of lux units.
|
|
*/
|
|
define(['Modernizr', 'hasEvent'], function(Modernizr, hasEvent) {
|
|
Modernizr.addTest('ambientlight', hasEvent('devicelight', window));
|
|
});
|