html-element-property-mixins
Advanced tools
Comparing version 0.10.4 to 0.10.5
{ | ||
"name": "html-element-property-mixins", | ||
"version": "0.10.4", | ||
"version": "0.10.5", | ||
"description": "A collection of mixins extending HTMLElement with properties.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -29,3 +29,3 @@ export const DOMProperties = (SuperClass) => class extends SuperClass { | ||
const attrValues = new Map(); | ||
this.getAttributeNames().map(attrName => attrValues.set(attrName, this.getAttribute(attrName))); | ||
for(var attrName in this.attributes) attrValues.set(attrName, this.getAttribute(attrName)); | ||
this.__initialAttributeValues = attrValues; | ||
@@ -32,0 +32,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44064