clean & lint stuff

This commit is contained in:
Thomas Citharel
2016-06-09 19:02:38 +02:00
parent 5ecdfcd041
commit 0743287f95
11 changed files with 395 additions and 394 deletions

View File

@ -1,25 +1,25 @@
function supportsLocalStorage() {
try {
return 'localStorage' in window && window['localStorage'] !== null;
} catch (e) {
return false;
}
try {
return 'localStorage' in window && window.localStorage !== null;
} catch (e) {
return false;
}
}
function savePercent(id, percent) {
if (!supportsLocalStorage()) { return false; }
localStorage["wallabag.article." + id + ".percent"] = percent;
return true;
if (!supportsLocalStorage()) { return false; }
localStorage['wallabag.article.' + id + '.percent'] = percent;
return true;
}
function retrievePercent(id) {
if (!supportsLocalStorage()) { return false; }
if (!supportsLocalStorage()) { return false; }
var bheight = $(document).height();
var percent = localStorage["wallabag.article." + id + ".percent"];
var scroll = bheight * percent;
var bheight = $(document).height();
var percent = localStorage['wallabag.article.' + id + '.percent'];
var scroll = bheight * percent;
$('html,body').animate({scrollTop: scroll}, 'fast');
$('html,body').animate({ scrollTop: scroll }, 'fast');
return true;
return true;
}