mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +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');
|
||
|
}
|
||
|
});
|