Skip to content

Commit

Permalink
add clarification to the pan on select demo that it's only for touch
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardW committed Mar 5, 2020
1 parent 3b4edf8 commit fa258bf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/components/config-functionality.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="config-container">
<div class="input-container">
<label>Pan on select</label>
<label>Pan on select (affects touchscreens)</label>
<input v-model="inputIsPanOnSelectEnabled" type="checkbox" />
</div>
<div class="input-container">
Expand All @@ -20,7 +20,13 @@
</div>
<div class="input-container">
<label>Hierarchy level at which to focus</label>
<input v-model.number="inputHierarchyLevelFocus" type="range" min="1" max="5" step="1" />
<input
v-model.number="inputHierarchyLevelFocus"
type="range"
min="1"
max="5"
step="1"
/>
</div>
<button @click="randomize">Randomize</button>
</div>
Expand Down

0 comments on commit fa258bf

Please sign in to comment.