From d80c2814c8a92f46f17cb2375af7e9c643cbbb68 Mon Sep 17 00:00:00 2001 From: Djamil Legato Date: Tue, 8 Sep 2015 15:50:11 -0700 Subject: [PATCH] Mobile: Do not error out on login page where sidebar isn't available --- themes/grav/js/mobile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/grav/js/mobile.js b/themes/grav/js/mobile.js index 95e95392..e585868e 100644 --- a/themes/grav/js/mobile.js +++ b/themes/grav/js/mobile.js @@ -64,7 +64,7 @@ $(document).ready(function(){ //actions here please; console.log("Other setup"); //make sure menu is visible - if(sidebar.style.display == 'none') { + if(sidebar && sidebar.style.display == 'none') { sidebar.style.display = 'block'; } },