better update

This commit is contained in:
unknown 2015-07-27 14:08:25 +01:00
parent 97d43fa727
commit 61e591a387

View File

@ -72,9 +72,16 @@ var APP = {
},
doLoad: function() {
var _load = localStorage.getItem('_storage');
$('#lastupdate').empty().append('Loading...');
this._storage = JSON.parse(localStorage.getItem('_storage'));
this.lastUpdated = this._storage.lastupdated;
if (_load != null)
this._storage = JSON.parse(_load);
else
this._storage = {
lastupdated: null,
feeds: {}
};
this.lastUpdated = this._storage.lastupdated || null;
this.showList();
},
showList: function() {