updated app

This commit is contained in:
2012-05-30 23:00:06 -04:00
parent 6a753904b7
commit da6ad88d48
5545 changed files with 1101709 additions and 60 deletions

View File

@@ -0,0 +1,37 @@
<Body:>
<div>
<p>
{#if _mode}
Mode: <b>{_mode}</b> &nbsp; FPS: <b>{_fps}</b>
{else}
Select a mode to run:
{/}
</p>
<p>
{{#each modes}}<button x-bind="click: start">{{this}}</button>{{/}}
<button x-bind="click: stop">Stop</button>
</p>
</div>
{#if _bindProperties}
<div>
{#each _boxes}
<div class="box-view">
<div id="box-{{i}}" class="box" style="top: {.top}px; left: {.left}px; background: rgb(0, 0, {.color});">
{.content}
</div>
</div>
{/}
</div>
{else}
<div>
{#each _boxes}
<div class="box-view">
<div id="box-{{i}}" class="box" style="top: {{top}}px; left: {{left}}px; background: rgb(0, 0, {{color}});">
{{content}}
</div>
</div>
{/}
</div>
{/}