diff --git a/static/index.html b/static/index.html index 458dffb..cee49e7 100644 --- a/static/index.html +++ b/static/index.html @@ -17,7 +17,7 @@ - +
diff --git a/static/js/app.js b/static/js/app.js index 8dda9c7..b6090c4 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -222,6 +222,12 @@ } }; + $rootScope.onKeyDown = function ($event) { + if ($event.keyCode == 27) { + $rootScope.sidebar = false + } + } + } ]);