From 812ed56d9081c25721553e5ad903842a2585c60b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 19 Jun 2017 21:42:02 +0200 Subject: [PATCH] Fix app-navigation-toggle height and small typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- css/style.css | 4 ++-- js/app/Run.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/css/style.css b/css/style.css index 364ba8fba..689e7bbda 100644 --- a/css/style.css +++ b/css/style.css @@ -172,8 +172,8 @@ button.button-inline:hover { } #app-navigation-toggle { - width: 45px; - height: 40px; + width: 44px; + height: 44px; cursor: pointer; opacity: 1; display: inline-block !important; diff --git a/js/app/Run.js b/js/app/Run.js index c32bc6758..d79c01557 100644 --- a/js/app/Run.js +++ b/js/app/Run.js @@ -64,9 +64,9 @@ app.run(function ($document, $rootScope, $transitions, BoardService) { $('#app-navigation-toggle').click(function(){ if($(window).width() > 768) { - $('#app-navigation').toggle('hidde'); + $('#app-navigation').toggle('hidden'); } else { - if(snapper.state().state == 'left'){ + if(snapper.state().state === 'left'){ snapper.close(); } else { snapper.open('left');