html-element-property-mixins
Advanced tools
Comparing version 0.9.3 to 0.9.4
{ | ||
"name": "html-element-property-mixins", | ||
"version": "0.9.3", | ||
"version": "0.9.4", | ||
"description": "A collection of mixins extending HTMLElement with properties.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -30,3 +30,3 @@ export const DOMProperties = (SuperClass) => class extends SuperClass { | ||
this.getAttributeNames().map(attrName => { | ||
if(this.constructor.DOMProperties.indexOf(attrName) !== -1) attrValues.set(attrName, this.getAttribute(attrName)); | ||
attrValues.set(attrName, this.getAttribute(attrName)); | ||
}); | ||
@@ -33,0 +33,0 @@ this.constructor.__initialAttributeValues = attrValues; |
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
31905