trigger sticky_kit:recalc if the size of left_aside_wrapper changes

This commit is contained in:
Mario Vavti 2017-01-03 17:56:40 +01:00
parent 4d5c20ce17
commit a9a35ccb6b

View File

@ -30,6 +30,15 @@ $(document).ready(function() {
} }
}); });
var left_aside_height = $('#left_aside_wrapper').height();
$('#left_aside_wrapper').on('click', function() {
if(left_aside_height != $('#left_aside_wrapper').height()) {
$(document.body).trigger("sticky_kit:recalc");
left_aside_height = $('#left_aside_wrapper').height();
}
});
if($('#left_aside_wrapper').length && $('#left_aside_wrapper').html().length === 0) { if($('#left_aside_wrapper').length && $('#left_aside_wrapper').html().length === 0) {
$('#expand-aside').hide(); $('#expand-aside').hide();
} }
@ -96,7 +105,7 @@ function toggleAside() {
$('main').addClass('region_1-on') $('main').addClass('region_1-on')
$('<div id="overlay"></div>').appendTo('section'); $('<div id="overlay"></div>').appendTo('section');
$('#left_aside_wrapper').stick_in_parent({ $('#left_aside_wrapper').stick_in_parent({
offset_top: $('nav').outerHeight(true) offset_top: $('nav').outerHeight(true) - 10
}); });
} }
} }