Louis authored on25/08/2018 23:51:28
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,25 @@
1
+<div class="component component-slider">
2
+  <label class="tap-highlight">
3
+    <span class="label-container">
4
+      <span class="label">{{{label}}}</span>
5
+      <span class="value-wrap">
6
+        <span class="value-pad"></span>
7
+        <input type="text" class="value" />
8
+      </span>
9
+    </span>
10
+    <span class="input">
11
+      <input
12
+        data-manipulator-target
13
+        class="slider"
14
+        type="range"
15
+        min="{{min}}"
16
+        max="{{max}}"
17
+        step="{{step}}"
18
+        {{each key: attributes}}{{key}}="{{this}}"{{/each}}
19
+      />
20
+    </span>
21
+</label>
22
+  {{if description}}
23
+    <div class="description">{{{description}}}</div>
24
+  {{/if}}
25
+</div>