Save torrent list sort order in local storage

This commit is contained in:
buinsky 2014-12-08 03:03:53 +03:00
parent b4f39add08
commit 5b604ac251
2 changed files with 13 additions and 4 deletions

View file

@ -22,6 +22,13 @@ if (typeof localStorage == 'undefined') {
}
}
function getLocalStorageItem(name, defaultVal) {
val = localStorage.getItem(name);
if (val === null || val === undefined)
val = defaultVal;
return val;
}
initializeWindows = function() {
function addClickEvent(el, fn) {