more helpers in common

pull/1/head
ansuz 2016-07-22 12:24:54 +02:00
parent 70f8837681
commit e84fbf0bc3
1 changed files with 14 additions and 0 deletions

View File

@ -71,6 +71,20 @@ define([
});
};
var getHash = common.getHash = function () {
return window.location.hash.slice(1);
};
var setPadAttribute = common.setPadAttribute = function (attr, value) {
var hash = getHash();
localStorage.setItem([getHash(),attr].join('.'), value);
return value;
};
var getPadAttribute = common.getPadAttribute = function (attr) {
return localStorage.getItem([getHash(),attr].join('.'));
};
/* fetch and migrate your pad history from localStorage */
var getRecentPads = common.getRecentPads = function () {
var recentPadsStr = localStorage[storageKey];