reduce accuracy of time property of storage items to seconds to save some space of local storage, #339

This commit is contained in:
Simon Grim 2016-01-17 23:36:14 +05:00
parent c07e6281ba
commit 65c5278169

View File

@ -328,11 +328,10 @@ function _getResourceFromStorage(locator) {
} }
function _putResourceIntoStorage(locator, data) { function _putResourceIntoStorage(locator, data) {
var curTime = new Date().getTime() / 1000; $.localStorage.set(locator, {
var storedResource = {time: curTime, data: data}; time: Math.trunc(new Date().getTime() / 1000),
data: data
var storage = $.localStorage; });
storage.set(locator, storedResource);
} }
function cleanupStorage() { function cleanupStorage() {