Blocking range track clicks through thumbs.
This commit is contained in:
parent
cf4978b37f
commit
cdb47066cc
|
@ -233,7 +233,7 @@ export default {
|
|||
letters: ['all'].concat(Array.from({ length: 26 }, (value, index) => String.fromCharCode(index + 97).toUpperCase())),
|
||||
boobSizes,
|
||||
boobSize: this.$route.query.bs?.split(',') || ['A', 'Z'],
|
||||
boobSizeRequired: this.$route.query.bs || false,
|
||||
boobSizeRequired: !!this.$route.query.bs,
|
||||
naturalBoobs: naturalBoobs > -1 ? naturalBoobs : 1,
|
||||
};
|
||||
},
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
type="range"
|
||||
class="slider"
|
||||
@change="emit"
|
||||
@click.stop
|
||||
>
|
||||
|
||||
<input
|
||||
|
@ -34,6 +35,7 @@
|
|||
type="range"
|
||||
class="slider"
|
||||
@change="emit"
|
||||
@click.stop
|
||||
>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue