mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
c5535e0a1b
No issue - fixed "{{#each}}" helper in templates to use block syntax - fixed deprecated ember.controller getter/setter function to use new syntax - removed unnecessary pass-protect route view
29 lines
712 B
JavaScript
29 lines
712 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Mixin.create({
|
|
application: Ember.inject.controller(),
|
|
|
|
isViewingSubview: Ember.computed('application.showSettingsMenu', {
|
|
get: function () {
|
|
return false;
|
|
},
|
|
set: function (key, value) {
|
|
// Not viewing a subview if we can't even see the PSM
|
|
if (!this.get('application.showSettingsMenu')) {
|
|
return false;
|
|
}
|
|
return value;
|
|
}
|
|
}),
|
|
|
|
actions: {
|
|
showSubview: function () {
|
|
this.set('isViewingSubview', true);
|
|
},
|
|
|
|
closeSubview: function () {
|
|
this.set('isViewingSubview', false);
|
|
}
|
|
}
|
|
});
|