@prof-dev/improved-select
Advanced tools
Comparing version 1.1.12 to 1.1.13
@@ -417,2 +417,5 @@ "use strict"; | ||
this.isActive = this.element.classList.toggle("is-active", force); | ||
this.toggleElements.forEach(function (element) { | ||
element.classList.toggle("is-active", force); | ||
}); | ||
if (this.isActive === true && | ||
@@ -419,0 +422,0 @@ this.activeToggleElement !== undefined && |
{ | ||
"name": "@prof-dev/improved-select", | ||
"version": "1.1.12", | ||
"version": "1.1.13", | ||
"description": "Helper for live clicks events management", | ||
@@ -5,0 +5,0 @@ "main": "lib/ImprovedSelect.js", |
@@ -378,2 +378,6 @@ import { EventEmitter } from "@prof-dev/event-emitter"; | ||
this.toggleElements.forEach((element) => { | ||
element.classList.toggle("is-active", force); | ||
}); | ||
if ( | ||
@@ -380,0 +384,0 @@ this.isActive === true && |
Sorry, the diff of this file is not supported yet
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
90809
1610