mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 20:34:02 +03:00
14 lines
243 B
JavaScript
14 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');
|
|
}
|
|
});
|