mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
25 lines
567 B
JavaScript
25 lines
567 B
JavaScript
import Ember from 'ember';
|
|
import DropdownMixin from 'ghost/mixins/dropdown-mixin';
|
|
|
|
const {
|
|
Component,
|
|
inject: {service}
|
|
} = Ember;
|
|
|
|
export default Component.extend(DropdownMixin, {
|
|
tagName: 'button',
|
|
attributeBindings: 'role',
|
|
role: 'button',
|
|
|
|
// matches with the dropdown this button toggles
|
|
dropdownName: null,
|
|
|
|
dropdown: service(),
|
|
|
|
// Notify dropdown service this dropdown should be toggled
|
|
click(event) {
|
|
this._super(event);
|
|
this.get('dropdown').toggleDropdown(this.get('dropdownName'), this);
|
|
}
|
|
});
|