diff options
author | friendica <info@friendica.com> | 2013-10-13 21:21:13 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-13 21:21:13 -0700 |
commit | 3991db62d49878bc7e48d1ab1b71bad5ad925785 (patch) | |
tree | 1df714ae4ca06a63efa57808a17d9693d6786d81 | |
parent | db42e4d2f92dacb02662dc298871300dfea75651 (diff) | |
download | volse-hubzilla-3991db62d49878bc7e48d1ab1b71bad5ad925785.tar.gz volse-hubzilla-3991db62d49878bc7e48d1ab1b71bad5ad925785.tar.bz2 volse-hubzilla-3991db62d49878bc7e48d1ab1b71bad5ad925785.zip |
fix endless scroll
-rw-r--r-- | js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/main.js b/js/main.js index 11a3b360c..432b02bee 100644 --- a/js/main.js +++ b/js/main.js @@ -138,7 +138,7 @@ });*/ var e = document.getElementById('content-complete'); - if(typeof e !== 'undefined') + if(e) pageHasMoreContent = false; /* setup onoff widgets */ |