beyond-rails 1.0.8 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/src/js/components/Tabbox.js +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a4fc7989841641152627de4c651d6c726f5d6c5a2aba23b3876da97fad82aa7
|
4
|
+
data.tar.gz: dcd745ce8ffb46e489dd0c1ac2293c0e0f4719d408767096bb542ff8f01d5495
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8522389bd4aa3eb9ad54b10df016214d9a9ab0f110db802830d5c70e8fd07ffc89a724e65d8ddd1b9b3b42f94350f0a5aeb257bee0b76390cbd8b8c16ec665f4
|
7
|
+
data.tar.gz: 98c27a007dbcf56ecd3b8a9c6ffd413eebffd22beeb93643cdda6868d00bbc8804df462efab5998f95c39fa38a2f14410f99b9b7662ff945062245f51d4b64a6
|
data/src/js/components/Tabbox.js
CHANGED
@@ -117,11 +117,12 @@ export default class Tabbox {
|
|
117
117
|
return
|
118
118
|
}
|
119
119
|
if ('tabboxDropdown' in node.dataset) {
|
120
|
+
const { optionEl } = this
|
120
121
|
return this.moveSlider({
|
121
122
|
top: node.offsetTop,
|
122
123
|
left: node.offsetLeft,
|
123
124
|
width: node.offsetWidth,
|
124
|
-
color:
|
125
|
+
color: optionEl ? optionEl.dataset.activeColor : node.dataset.activeColor
|
125
126
|
})
|
126
127
|
}
|
127
128
|
this.moveSlider({
|