avoid collapsing only above the viewport
This commit is contained in:
parent
00ae6bdac6
commit
48963f62f9
@ -641,7 +641,7 @@ function collapseHeight() {
|
||||
if(orgHeight > divmore_height) {
|
||||
if(! $(this).hasClass('divmore')) {
|
||||
|
||||
var trigger = $(window).scrollTop() + ($(window).height() - divmore_height) < $(this).offset().top ? true : false;
|
||||
var trigger = $(window).scrollTop() < $(this).offset().top ? true : false;
|
||||
|
||||
if(trigger) {
|
||||
$(this).readmore({
|
||||
@ -653,7 +653,7 @@ function collapseHeight() {
|
||||
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: 0 } );
|
||||
$(window).scrollTop($(window).scrollTop() - (orgHeight - divmore_height));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -40,7 +40,6 @@ if(! $a->install) {
|
||||
$nav_min_opacity=get_pconfig($uid,'redbasic','nav_min_opacity');
|
||||
$top_photo=get_pconfig($uid,'redbasic','top_photo');
|
||||
$reply_photo=get_pconfig($uid,'redbasic','reply_photo');
|
||||
|
||||
}
|
||||
|
||||
// Now load the scheme. If a value is changed above, we'll keep the settings
|
||||
|
Reference in New Issue
Block a user