diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-24 10:09:02 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-24 10:09:02 +0100 |
commit | cb6c21ce9040d57a96210778148e46f1d5aed22d (patch) | |
tree | 8474ae35d34224df5fa70307e6f5fe47921f80af /view/tpl/cover_photo_widget.tpl | |
parent | 1171e1dd9ce96024ba7368e84a3709b24a0f160b (diff) | |
download | volse-hubzilla-cb6c21ce9040d57a96210778148e46f1d5aed22d.tar.gz volse-hubzilla-cb6c21ce9040d57a96210778148e46f1d5aed22d.tar.bz2 volse-hubzilla-cb6c21ce9040d57a96210778148e46f1d5aed22d.zip |
do not return false here. it can lead to unresponsive links under certain situations.
Diffstat (limited to 'view/tpl/cover_photo_widget.tpl')
-rwxr-xr-x | view/tpl/cover_photo_widget.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 93debf442..806866212 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -63,7 +63,7 @@ return; } $('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }); - return false; + return; } </script> |