summaryrefslogtreecommitdiff
path: root/client/button.js
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-07-12 12:03:39 +0300
committerYuval Adam <yuval@y3xz.com>2015-07-12 12:03:39 +0300
commit64562401cd6e9de616d471d2a803dcf88fd985d5 (patch)
treeda10f0127f67568695f4a211c935a90cf99050e2 /client/button.js
parente0ec0f68383c7ee3aff98cd73a62b73f31c01f74 (diff)
Anon profile pic on logout
Diffstat (limited to 'client/button.js')
-rw-r--r--client/button.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/button.js b/client/button.js
index 2eb6b47..b957016 100644
--- a/client/button.js
+++ b/client/button.js
@@ -126,6 +126,7 @@ function animate2() {
Template.layout.events({
'click .logout': function (event) {
Meteor.logout();
+ $('div.header img.profile').attr('src', 'https://instagramimages-a.akamaihd.net/profiles/anonymousUser.jpg');
Router.go('login');
}
})