plutopluto

git clone https://git.ce9e.org/plutopluto.git

commit
8c323351a4e678440eebffd2b203de1b9b29d5cd
parent
d8a75faeab403a748f4ec508ab4a99d04d1ba08a
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2017-07-23 20:37
fix autoload

Diffstat

M plutopluto/static/plutopluto.js 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/plutopluto/static/plutopluto.js b/plutopluto/static/plutopluto.js

@@ -43,7 +43,7 @@ $(document).ready(function() {
   43    43 		var bottomDistance = function() {
   44    44 			var doc = document.body.scrollHeight;
   45    45 			var screen = window.innerHeight;
   46    -1 			var position = document.body.scrollTop;
   -1    46 			var position = document.body.scrollTop || window.scrollY;
   47    47 			return doc - position - screen;
   48    48 		};
   49    49