1

Fixing local storage issue.

This commit is contained in:
Alex Yatskov 2015-03-17 14:04:26 +09:00
parent 3973a4cee5
commit 2afbc7f77a

View File

@ -149,9 +149,7 @@
}
function getProfile() {
var profile = JSON.parse(localStorage.profile || '{}');
profile.serial = true;
return profile;
return localStorage.profile || '{}';
}
window.onpopstate = function(state) {