mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
4378895a30
issue #2418 - create ghost-popover component and template - use it for the navigation popover - still needs to handle global click event on the document to close the popover
10 lines
295 B
JavaScript
10 lines
295 B
JavaScript
var ApplicationController = Ember.Controller.extend({
|
|
isLoggedOut: Ember.computed.match('currentPath', /(signin|signup|forgotten|reset)/),
|
|
actions: {
|
|
toggleMenu: function () {
|
|
this.toggleProperty('showMenu');
|
|
}
|
|
}
|
|
});
|
|
|
|
export default ApplicationController; |