Fix sticky aside when height change
This commit is contained in:
parent
e569e20caf
commit
ea9d44c20a
|
@ -320,7 +320,13 @@ $(document).ready(function(){
|
||||||
* Sticky aside on page scroll
|
* Sticky aside on page scroll
|
||||||
*/
|
*/
|
||||||
$("aside").stick_in_parent({
|
$("aside").stick_in_parent({
|
||||||
offset_top: 100 // px, header + tab bar + spacing
|
offset_top: 100, // px, header + tab bar + spacing
|
||||||
|
recalc_every: 10
|
||||||
|
});
|
||||||
|
// recalculate sticky aside on clicks.
|
||||||
|
// this handle height changes on expanding submenus
|
||||||
|
$("aside").on("click", function(){
|
||||||
|
$(document.body).trigger("sticky_kit:recalc");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue