From 0aef70028ad46cd7fb019e306600bf7da72b4efa Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 12 Jun 2018 19:59:30 -0700 Subject: [PATCH] Dismiss docs sidebar when scrolling left on mobile --- docs/_layouts/default.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 6fe8af49..a764485b 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -120,6 +120,13 @@ }); } + $(document).scroll(function() { + if ($(document).scrollLeft() > 0) { + localStorage.setItem('sidebar-active', 'false'); + $(document.body).addClass('sidebar-hidden'); + } + }); + $('h1, h2, h3, h4, h5, h6').filter('[id]').each(function() { $(this).html('' + $(this).text() + ''); });