mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
classNames: ['gh-autonav-toggle'],
|
|
|
|
maximise: false,
|
|
|
|
click: function () {
|
|
this.toggleProperty('maximise');
|
|
|
|
this.sendAction('onClick');
|
|
}
|
|
});
|