mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
19 lines
539 B
JavaScript
19 lines
539 B
JavaScript
import Ember from 'ember';
|
|
import DropdownMixin from 'ghost/mixins/dropdown-mixin';
|
|
|
|
var DropdownButton = Ember.Component.extend(DropdownMixin, {
|
|
tagName: 'button',
|
|
attributeBindings: 'role',
|
|
role: 'button',
|
|
|
|
// matches with the dropdown this button toggles
|
|
dropdownName: null,
|
|
|
|
// Notify dropdown service this dropdown should be toggled
|
|
click: function (event) {
|
|
this._super(event);
|
|
this.get('dropdown').toggleDropdown(this.get('dropdownName'), this);
|
|
}
|
|
});
|
|
|
|
export default DropdownButton;
|