diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-06-17 21:21:56 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-06-17 21:21:56 +0300 |
| commit | 161734857bdf3c3a382a2740a58f9065c929990f (patch) | |
| tree | 73391dabf38a3f7d8b8f0e74a27fd554196c5b66 /client/templates | |
| parent | b128b77d38c95fd2addafad8cc8dffa0b2bc0732 (diff) | |
Animations work up until averaging
Diffstat (limited to 'client/templates')
| -rw-r--r-- | client/templates/photos.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/templates/photos.html b/client/templates/photos.html index 6c77de9..85af3a0 100644 --- a/client/templates/photos.html +++ b/client/templates/photos.html @@ -1,10 +1,10 @@ <template name="photos"> <div class="photos-wrapper"> - <h4>(Step 1)</h4> - <h2>Processing...</h2> - <button class="pixelate btn btn-default">Pixelate</button> + <h4 class="step">(Step 1)</h4> + <h2 class="title">Processing...</h2> + <!-- <button class="pixelate btn btn-default">Pixelate</button> <button class="color btn btn-default">Color</button> - <button class="average btn btn-default">Average</button> + <button class="average btn btn-default">Average</button> --> <div class="photos"> {{#each photos}} {{> photo}} @@ -15,7 +15,7 @@ </template> <template name="photo"> - <div class="photo"> + <div class="photo" style="display: none;"> <div class="title">{{date}}</div> <img id="img-{{id}}" class="instagram-photo" src="{{proxy images.thumbnail.url}}" crossorigin="anonymous"> <canvas id="canvas-{{id}}" style="height: 150px; width: 150px;"></canvas> |
