mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
14 lines
460 B
JavaScript
14 lines
460 B
JavaScript
import DropdownMixin from 'ghost/mixins/dropdown-mixin';
|
|
|
|
var DropdownButton = Ember.Component.extend(DropdownMixin, {
|
|
tagName: '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; |