Close modals on escape

Closes #3016

- Disconnect modal outlet on escape key in closePopups action handler
This commit is contained in:
Jacob Gable 2014-06-23 21:52:38 -05:00
parent 1fe9238dd6
commit 2242d8b564

View File

@ -8,8 +8,10 @@ var ApplicationRoute = Ember.Route.extend(ShortcutsRoute, {
closePopups: function () { closePopups: function () {
this.get('popover').closePopovers(); this.get('popover').closePopovers();
this.get('notifications').closeAll(); this.get('notifications').closeAll();
// @todo close modals
this.send('closeModal');
}, },
signedIn: function (user) { signedIn: function (user) {
// Update the user on all routes and controllers // Update the user on all routes and controllers
this.container.unregister('user:current'); this.container.unregister('user:current');