Ghost/ghost/admin/controllers/application.js

16 lines
419 B
JavaScript
Raw Normal View History

var ApplicationController = Ember.Controller.extend({
hideNav: Ember.computed.match('currentPath', /(error|signin|signup|setup|forgotten|reset)/),
topNotificationCount: 0,
showGlobalMobileNav: false,
showRightOutlet: false,
actions: {
topNotificationChange: function (count) {
this.set('topNotificationCount', count);
}
}
});
export default ApplicationController;