summaryrefslogtreecommitdiff
path: root/client/button.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/button.js')
-rw-r--r--client/button.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/button.js b/client/button.js
index 0d72f7a..420224d 100644
--- a/client/button.js
+++ b/client/button.js
@@ -43,7 +43,9 @@ Template.dates.helpers({
Template.photos.events({
'click button.pixelate': function (event) {
_.each(Session.get('photos'), function(x) {
+ $('#img-'+x.id).hide()
Effects.pixelate(x.id);
+ $('#canvas-'+x.id).show()
})
}
})