diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-08-24 22:58:02 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-08-24 22:58:02 +0200 |
commit | 5c32f42fe986d2312cfbee9f8c52375af6a602b8 (patch) | |
tree | fb84482b14bffa7f2f1c2319f5ac0c1b4cd0f50e /view/tpl | |
parent | a78025255235b5aa34bc90e990e9accf91db320d (diff) | |
download | volse-hubzilla-5c32f42fe986d2312cfbee9f8c52375af6a602b8.tar.gz volse-hubzilla-5c32f42fe986d2312cfbee9f8c52375af6a602b8.tar.bz2 volse-hubzilla-5c32f42fe986d2312cfbee9f8c52375af6a602b8.zip |
do not return false since it could prevent clicking also when not appropriate.
Diffstat (limited to 'view/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 59626cf32..93e3f057e 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -75,7 +75,7 @@ return; } $('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }); - return false; + return; } </script> |