Adds global "esc" hotkey to close all open dialogs

This commit is contained in:
perploug
2013-10-23 09:20:03 +02:00
parent 13f1c80329
commit 69a0de20d7

View File

@@ -37,6 +37,12 @@ function NavigationController($scope,$rootScope, $location, $log, $routeParams,
$scope.nav.showSearch();
});
//trigger dialogs closing with a hotkey:
keyboardService.bind("esc", function(){
$rootScope.$emit("closeDialogs");
});
$scope.selectedId = navigationService.currentId;
//This reacts to clicks passed to the body element which emits a global call to close all dialogs