Fix #799: Press ESC to close the project directory menu

stable
David Barragán Merino 2014-09-02 11:09:31 +02:00
parent 613d0aff7f
commit de82b6b6d2
1 changed files with 5 additions and 0 deletions

View File

@ -146,6 +146,11 @@ ProjectsNavigationDirective = ($rootscope, animationFrame, $timeout, tgLoader, $
overlay.on 'click', () -> overlay.on 'click', () ->
hideMenu() hideMenu()
$(document).on 'keydown', (e) =>
code = if e.keyCode then e.keyCode else e.which
if code == 27
hideMenu()
$scope.$on "nav:projects-list:open", -> $scope.$on "nav:projects-list:open", ->
if !$(document.body).hasClass("open-projects-nav") if !$(document.body).hasClass("open-projects-nav")
animationFrame.add () -> animationFrame.add () ->