mirror of
https://github.com/pebble-dev/clay.git
synced 2026-09-02 07:07:46 -04:00
threw out slate, mustache and zepto. replaced with minified.js
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
<label class="item item-color">
|
||||
<span class="label">{{{label}}}</span>
|
||||
<input
|
||||
data-manipulator-target
|
||||
type="text"
|
||||
/>
|
||||
<div class="picker">
|
||||
<span class="value"></span>
|
||||
<div class="color-box-wrap">
|
||||
<div class="color-box-container"></div>
|
||||
</div>
|
||||
</div>
|
||||
</label>
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
<div
|
||||
data-manipulator-target
|
||||
class="item-container-footer"
|
||||
{{each attributes}} {{this.key}}="{{this.value}}" {{/each}}
|
||||
>
|
||||
</div>
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
<div class="item-container-header">
|
||||
<h1 data-manipulator-target {{each key: attributes}}{{key}}="{{this}}"{{/each}}></h1>
|
||||
</div>
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
<label class="item">
|
||||
<span class="label">{{{label}}}</span>
|
||||
<span class="input">
|
||||
<input
|
||||
data-manipulator-target
|
||||
type="text"
|
||||
{{each key: attributes}}{{key}}="{{this}}"{{/each}}
|
||||
/>
|
||||
</span>
|
||||
</label>
|
||||
@@ -0,0 +1,16 @@
|
||||
<div class="">
|
||||
<span class="label">{{{label}}}</span>
|
||||
<div data-manipulator-target>
|
||||
{{each options}}
|
||||
<label class="item">
|
||||
<span class="label">{{{this.label}}}</span>
|
||||
<input
|
||||
type="radio"
|
||||
class="item-radio"
|
||||
name="{{this.index}}"
|
||||
value="{{this.value}}"
|
||||
/>
|
||||
</label>
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
<label class="item">
|
||||
<span class="label">{{{label}}}</span>
|
||||
<select data-manipulator-target class="item-select">
|
||||
{{each options}}
|
||||
<option value="{{value}}" class="item-select-option">{{{label}}}</option>
|
||||
{{/each}}
|
||||
</select>
|
||||
</label>
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
<div class="item-container-header">
|
||||
<h2 data-manipulator-target {{each key: attributes}}{{key}}="{{this}}"{{/each}}></h2>
|
||||
</div>
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
<div class="button-container">
|
||||
<input
|
||||
data-manipulator-target
|
||||
type="submit"
|
||||
class="item-button"
|
||||
value="{{label}}"
|
||||
{{each key: attributes}}{{key}}="{{this}}"{{/each}}
|
||||
>
|
||||
</div>
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
<label class="item">
|
||||
<span class="label">{{{label}}}</span>
|
||||
<span class="input">
|
||||
<input
|
||||
data-manipulator-target
|
||||
type="checkbox"
|
||||
{{each key: attributes}}{{key}}="{{this}}"{{/each}}
|
||||
/>
|
||||
</span>
|
||||
</label>
|
||||
Reference in New Issue
Block a user