forked from wallabag/wallabag
Embeded jquery 2.0.3 dependancie
This commit is contained in:
committed by
Jean-Christophe Saad-Dupuy
commit
bf7516112f
1
themes/default/js/jquery-2.0.3.min.js
vendored
Normal file
1
themes/default/js/jquery-2.0.3.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
25
themes/default/js/restoreScroll.js
Normal file
25
themes/default/js/restoreScroll.js
Normal file
@ -0,0 +1,25 @@
|
||||
function supportsLocalStorage() {
|
||||
try {
|
||||
return 'localStorage' in window && window['localStorage'] !== null;
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function savePercent(id, percent) {
|
||||
if (!supportsLocalStorage()) { return false; }
|
||||
localStorage["poche.article." + id + ".percent"] = percent;
|
||||
return true;
|
||||
}
|
||||
|
||||
function retrievePercent(id) {
|
||||
if (!supportsLocalStorage()) { return false; }
|
||||
|
||||
var bheight = $(document).height();
|
||||
var percent = localStorage["poche.article." + id + ".percent"];
|
||||
var scroll = bheight * percent;
|
||||
|
||||
$('html,body').animate({scrollTop: scroll}, 'fast');
|
||||
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user