Skip to content

Commit

Permalink
Merge pull request #902 from biigle/fix-slider-focus
Browse files Browse the repository at this point in the history
Fix slider focus to enable keyboard shortcuts again
  • Loading branch information
mzur authored Aug 21, 2024
2 parents ccbe195 + 4481078 commit ff323fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/annotations/show/tabs/settings.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

<div class="sidebar-tab__section">
<h5 title="Set the opacity of annotations on the map">Annotation Opacity (<span v-text="annotationOpacity"></span>)</h5>
<input type="range" min="0" max="1" step="0.1" v-model="annotationOpacity">
<input type="range" min="0" max="1" step="0.1" v-model="annotationOpacity" onmouseup="this.blur()">
</div>

<div class="sidebar-tab__section">
<h5 title="Set the number of caches images ">Cached Images (<span v-text="cachedImagesCount"></span>)</h5>
<input type="range" min="1" max="50" step="1" v-model="cachedImagesCount">
<input type="range" min="1" max="50" step="1" v-model="cachedImagesCount" onmouseup="this.blur()">
</div>

<div class="sidebar-tab__section">
Expand Down

0 comments on commit ff323fe

Please sign in to comment.