mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
22 lines
562 B
JavaScript
22 lines
562 B
JavaScript
/*!
|
|
{
|
|
"name": "DOM4 MutationObserver",
|
|
"property": "mutationobserver",
|
|
"caniuse": "mutationobserver",
|
|
"tags": ["dom"],
|
|
"authors": ["Karel Sedláček (@ksdlck)"],
|
|
"polyfills": ["mutationobservers"],
|
|
"notes": [{
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver"
|
|
}]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Determines if DOM4 MutationObserver support is available.
|
|
*/
|
|
define(['Modernizr'], function(Modernizr) {
|
|
Modernizr.addTest('mutationobserver',
|
|
!!window.MutationObserver || !!window.WebKitMutationObserver);
|
|
});
|