threw out slate, mustache and zepto. replaced with minified.js

This commit is contained in:
Keegan
2016-01-08 18:54:57 -08:00
parent 58a1a3f498
commit 08bff3ac4b
125 changed files with 10464 additions and 260 deletions
+13
View File
@@ -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>
+6
View File
@@ -0,0 +1,6 @@
<div
data-manipulator-target
class="item-container-footer"
{{each attributes}} {{this.key}}="{{this.value}}" {{/each}}
>
</div>
+3
View File
@@ -0,0 +1,3 @@
<div class="item-container-header">
<h1 data-manipulator-target {{each key: attributes}}{{key}}="{{this}}"{{/each}}></h1>
</div>
+10
View File
@@ -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>
+16
View File
@@ -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>
+8
View File
@@ -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>
+3
View File
@@ -0,0 +1,3 @@
<div class="item-container-header">
<h2 data-manipulator-target {{each key: attributes}}{{key}}="{{this}}"{{/each}}></h2>
</div>
+9
View File
@@ -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>
+10
View File
@@ -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>