aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-04-08 08:53:28 +0200
committerMario Vavti <mario@mariovavti.com>2015-04-08 08:53:28 +0200
commit549bcf5a723ea0d64954f3ba174cf024f3162cb6 (patch)
treee3d37d24197b8bd2d13271b6e7495caa589da64c /view/js
parentb212482330e2b8baca9b5eaddcdaacdb6cca1b15 (diff)
downloadvolse-hubzilla-549bcf5a723ea0d64954f3ba174cf024f3162cb6.tar.gz
volse-hubzilla-549bcf5a723ea0d64954f3ba174cf024f3162cb6.tar.bz2
volse-hubzilla-549bcf5a723ea0d64954f3ba174cf024f3162cb6.zip
this is easier on the eyes when collapsing a long post/comment
Diffstat (limited to 'view/js')
-rw-r--r--view/js/main.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js
index b9fb9f85e..552dd959e 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -620,13 +620,14 @@ function collapseHeight() {
if(orgHeight > divmore_height + 10) {
if(! $(this).hasClass('divmore')) {
$(this).readmore({
+ speed: 0,
collapsedHeight: divmore_height,
moreLink: '<a href="#" class="divgrow-showmore">' + aStr.divgrowmore + '</a>',
lessLink: '<a href="#" class="divgrow-showmore">' + aStr.divgrowless + '</a>',
beforeToggle: function(trigger, element, expanded) {
if(expanded) {
if((($(element).offset().top + divmore_height) - $(window).scrollTop()) < 65 ) {
- $('html, body').animate( { scrollTop: $(window).scrollTop() - (orgHeight - divmore_height) }, {duration: 100 } );
+ $('html, body').animate( { scrollTop: $(window).scrollTop() - (orgHeight - divmore_height) }, {duration: 0 } );
}
}
}