Frio: Enable stiky aside only on desktop-size windows.

"Hack" to fix the "scroll back to top" problem with
chrome-based browsers, sticky-kit and off-canvas aside
This commit is contained in:
fabrixxm 2017-04-27 08:39:35 +02:00
parent 0afc732059
commit 0ffe426ff1
2 changed files with 12 additions and 13 deletions

View file

@ -126,9 +126,6 @@ code {
aside.canvas-slid::before { aside.canvas-slid::before {
opacity: 1; opacity: 1;
} }
aside + div {
display:none!important;
}
} }
/* /*

View file

@ -317,8 +317,9 @@ $(document).ready(function(){
}); });
/* /*
* Sticky aside on page scroll * Sticky aside on page scroll, only on desktop
*/ */
if ($(window).width() > 976) {
$("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 recalc_every: 10
@ -328,6 +329,7 @@ $(document).ready(function(){
$("aside").on("click", function(){ $("aside").on("click", function(){
$(document.body).trigger("sticky_kit:recalc"); $(document.body).trigger("sticky_kit:recalc");
}); });
}
}); });
function openClose(theID) { function openClose(theID) {