Add compatibility for HTMLElement's dataset (#945)
This commit is contained in:
parent
f8a38de791
commit
d6e4607fd0
@ -205,3 +205,15 @@
|
|||||||
});
|
});
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
// HTMLElement dataset property
|
||||||
|
(function checkDatasetProperty() {
|
||||||
|
var div = document.createElement('div');
|
||||||
|
if ('dataset' in div)
|
||||||
|
return; // dataset property exists
|
||||||
|
Object.defineProperty(HTMLElement.prototype, 'dataset', {
|
||||||
|
get: function htmlElementDatasetGetter() {
|
||||||
|
// adding dataset field to the actual object
|
||||||
|
return (this.dataset = {});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user