Commit 662731550212d18c45a565aef35d3645313eab3b
1 parent
b4249459
Exists in
master
and in
5 other branches
Remove votedProposals after logout
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
js/main.js
... | ... | @@ -906,6 +906,7 @@ define(['handlebars', 'fastclick', 'handlebars_helpers'], function(Handlebars, F |
906 | 906 | $(document).on('click', '.logout', function (e){ |
907 | 907 | var self = $(this); |
908 | 908 | $.removeCookie('_dialoga_session'); |
909 | + $.removeCookie('votedProposals'); | |
909 | 910 | $.removeCookie('*'); |
910 | 911 | logged_in = false; |
911 | 912 | $('.logout').hide(); | ... | ... |