Blocking range track clicks through thumbs.

This commit is contained in:
DebaucheryLibrarian 2021-03-03 14:54:51 +01:00
parent cf4978b37f
commit cdb47066cc
2 changed files with 3 additions and 1 deletions

View File

@ -233,7 +233,7 @@ export default {
letters: ['all'].concat(Array.from({ length: 26 }, (value, index) => String.fromCharCode(index + 97).toUpperCase())), letters: ['all'].concat(Array.from({ length: 26 }, (value, index) => String.fromCharCode(index + 97).toUpperCase())),
boobSizes, boobSizes,
boobSize: this.$route.query.bs?.split(',') || ['A', 'Z'], boobSize: this.$route.query.bs?.split(',') || ['A', 'Z'],
boobSizeRequired: this.$route.query.bs || false, boobSizeRequired: !!this.$route.query.bs,
naturalBoobs: naturalBoobs > -1 ? naturalBoobs : 1, naturalBoobs: naturalBoobs > -1 ? naturalBoobs : 1,
}; };
}, },

View File

@ -23,6 +23,7 @@
type="range" type="range"
class="slider" class="slider"
@change="emit" @change="emit"
@click.stop
> >
<input <input
@ -34,6 +35,7 @@
type="range" type="range"
class="slider" class="slider"
@change="emit" @change="emit"
@click.stop
> >
</div> </div>