From c2e10f09732ff96a7b185aa4e0a8896750d5c32d Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Tue, 12 Jun 2018 15:31:25 -0700 Subject: hide sidebar on small width --- static/ui.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'static/ui.js') diff --git a/static/ui.js b/static/ui.js index 6534a20..5f50655 100644 --- a/static/ui.js +++ b/static/ui.js @@ -1,6 +1,9 @@ var templates = {}; $(document).ready(function() { + if ( $(window).width() < 1024 ) { + $('#filters').addClass('hidden'); + } boot(); }); -- cgit v1.2.3