Ghost/ghost/admin/app/components/gh-dropdown-button.js
2016-01-19 07:03:27 -06:00

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);
}
});