fixed alert tab order and fixed some console logging issues

This commit is contained in:
Torkel Ödegaard
2018-11-15 17:33:55 +01:00
parent 36ff94668c
commit 8ce1cc2d52
3 changed files with 3 additions and 4 deletions

View File

@@ -32,8 +32,8 @@ export class KeybindingSrv {
this.setupGlobal();
appEvents.on('show-modal', () => (this.modalOpen = true));
$rootScope.onAppEvent('timepickerOpen', () => (this.timepickerOpen = true));
$rootScope.onAppEvent('timepickerClosed', () => (this.timepickerOpen = false));
appEvents.on('timepickerOpen', () => (this.timepickerOpen = true));
appEvents.on('timepickerClosed', () => (this.timepickerOpen = false));
}
setupGlobal() {