summaryrefslogtreecommitdiff
path: root/client/templates
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-07-07 17:44:02 +0300
committerYuval Adam <yuval@y3xz.com>2015-07-07 17:44:02 +0300
commit288893999c04a2cbe9adbc61ae7d753913bdb07e (patch)
tree51f67638654942aa260edd606919651f89fad0d8 /client/templates
parente9ce70493ff75a997007a594fd47aff09da451ad (diff)
Partial canvas overflow fix
Diffstat (limited to 'client/templates')
-rw-r--r--client/templates/photos.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/templates/photos.html b/client/templates/photos.html
index 7cd3055..be52338 100644
--- a/client/templates/photos.html
+++ b/client/templates/photos.html
@@ -55,7 +55,7 @@
<button class="share-print">Print</button>
</div>
</div>
- <canvas id="canvas-all" style="display: none; height: 150px; width: 150px;"></canvas>
+ <canvas id="canvas-all" style="height: 150px; width: 150px;"></canvas>
</div>
</template>
@@ -66,7 +66,7 @@
<template name="photo">
<div class="photo" style="display: none;">
<img id="img-{{id}}" class="instagram-photo" src="{{proxy images.thumbnail.url}}" crossorigin="anonymous">
- <canvas id="canvas-{{id}}" style="height: 150px; width: 150px;"></canvas>
+ <canvas id="canvas-{{id}}" style="position: absolute; left: -9999px; height: 150px; width: 150px;"></canvas>
<div class="title">{{date}}</div>
</div>
</template>