-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnoteSettings.html
31 lines (28 loc) · 1.5 KB
/
noteSettings.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<hr>
<h3 class="form-header"><i class="fas fa-bookmark"></i> {{ localize "pinfix.title" }}</h3>
<p class="notes">{{ localize "pinfix.notes.description" }}</p>
<div class="form-group">
<label>{{ localize "pinfix.notes.alwaysShowName.name" }}</label>
<input type="checkbox" name="flags.pinfix.showName" data-dtype="Boolean" {{#if showName}} checked{{/if}}>
<p class="notes">{{ localize "pinfix.notes.alwaysShowName.desc" }}</p>
</div>
<div class="pin-fixer form-group">
<label>{{ localize "pinfix.notes.minZoomLevel.name" }}</label>
<div class="range-slider-with-icons">
<i class="fas fa-search-minus"></i>
<input type="range" class="range-slider" name="flags.pinfix.minZoomLevel" data-dtype="Number" value="{{minZoomLevel}}" max="3" min="0.1" step="0.1">
<input type="number" class="range-editor" value="{{minZoomLevel}}" max="3" min="0.1" step="0.1">
<i class="fas fa-search-plus"></i>
</div>
<p class="notes">{{ localize "pinfix.notes.minZoomLevel.desc" }}</p>
</div>
<div class="pin-fixer form-group">
<label>{{ localize "pinfix.notes.maxZoomLevel.name" }}</label>
<div class="range-slider-with-icons">
<i class="fas fa-search-minus"></i>
<input type="range" class="range-slider" name="flags.pinfix.maxZoomLevel" data-dtype="Number" value="{{maxZoomLevel}}" min="0.1" max="3" step="0.1">
<input type="number" class="range-editor" value="{{maxZoomLevel}}" min="0.1" max="3" step="0.1">
<i class="fas fa-search-plus"></i>
</div>
<p class="notes">{{ localize "pinfix.notes.maxZoomLevel.desc" }}</p>
</div>