mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
0d95ce4b8a
Ref #4642 - Move duplicate code from PSM and SettingsTags to a mixin
28 lines
718 B
JavaScript
28 lines
718 B
JavaScript
var SettingsMenuControllerMixin = Ember.Mixin.create({
|
|
needs: 'application',
|
|
|
|
isViewingSubview: Ember.computed('controllers.application.showSettingsMenu', function (key, value) {
|
|
// Not viewing a subview if we can't even see the PSM
|
|
if (!this.get('controllers.application.showSettingsMenu')) {
|
|
return false;
|
|
}
|
|
if (arguments.length > 1) {
|
|
return value;
|
|
}
|
|
|
|
return false;
|
|
}),
|
|
|
|
actions: {
|
|
showSubview: function () {
|
|
this.set('isViewingSubview', true);
|
|
},
|
|
|
|
closeSubview: function () {
|
|
this.set('isViewingSubview', false);
|
|
}
|
|
}
|
|
});
|
|
|
|
export default SettingsMenuControllerMixin;
|