Just remove groups from localStorage instead of all data

This commit is contained in:
Benjamin Renard 2014-01-18 00:21:36 +01:00
parent 102d1d1a17
commit 0b0fb2dcb0

View file

@ -381,7 +381,7 @@ clear_local_data=function() {
}
on_confirm_clear_local_data=function(data) {
localStorage.clear();
delete localStorage.groups;
location.reload();
}