aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/_global/index.js
diff options
context:
space:
mode:
authorSimounet <contact@simounet.net>2018-05-24 08:27:15 +0200
committerSimounet <contact@simounet.net>2018-05-24 09:04:02 +0200
commitf136d288d6fbc57af680e9a738b023abbccf0d6d (patch)
tree708720b087230b4c31d98a7f6f360a7f19332a14 /app/Resources/static/themes/_global/index.js
parent1d770f9867a30ae6ac1351de80b2ce733c2673fa (diff)
downloadwallabag-f136d288d6fbc57af680e9a738b023abbccf0d6d.tar.gz
wallabag-f136d288d6fbc57af680e9a738b023abbccf0d6d.tar.zst
wallabag-f136d288d6fbc57af680e9a738b023abbccf0d6d.zip
Fix Firefox mobile unneeded resize
Before that, on Firefox Mobile, when you were moving to the top or to the bottom of the page, you were stopped before to go to the opposite side.
Diffstat (limited to 'app/Resources/static/themes/_global/index.js')
-rw-r--r--app/Resources/static/themes/_global/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Resources/static/themes/_global/index.js b/app/Resources/static/themes/_global/index.js
index fddb476d..b810e5d7 100644
--- a/app/Resources/static/themes/_global/index.js
+++ b/app/Resources/static/themes/_global/index.js
@@ -65,7 +65,7 @@ $(document).ready(() => {
65 retrievePercent(x.entryId); 65 retrievePercent(x.entryId);
66 66
67 $(window).resize(() => { 67 $(window).resize(() => {
68 retrievePercent(x.entryId); 68 retrievePercent(x.entryId, true);
69 }); 69 });
70 } 70 }
71}); 71});