]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - app/Resources/static/themes/_global/js/restoreScroll.js
Assets work
[github/wallabag/wallabag.git] / app / Resources / static / themes / _global / js / restoreScroll.js
diff --git a/app/Resources/static/themes/_global/js/restoreScroll.js b/app/Resources/static/themes/_global/js/restoreScroll.js
deleted file mode 100644 (file)
index 9c4d7e2..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-function supportsLocalStorage() {
-  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;
-}
-
-function retrievePercent(id) {
-  if (!supportsLocalStorage()) { return false; }
-
-  var bheight = $(document).height();
-  var percent = localStorage['wallabag.article.' + id + '.percent'];
-  var scroll = bheight * percent;
-
-  $('html,body').animate({ scrollTop: scroll }, 'fast');
-
-  return true;
-}