mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
18 lines
569 B
JavaScript
18 lines
569 B
JavaScript
import Ember from 'ember';
|
|
import DropdownButton from 'ghost/components/gh-dropdown-button';
|
|
|
|
var PopoverButton = DropdownButton.extend({
|
|
click: Ember.K, // We don't want clicks on popovers, but dropdowns have them. So `K`ill them here.
|
|
|
|
mouseEnter: function (event) {
|
|
this._super(event);
|
|
this.get('dropdown').toggleDropdown(this.get('popoverName'), this);
|
|
},
|
|
|
|
mouseLeave: function (event) {
|
|
this._super(event);
|
|
this.get('dropdown').toggleDropdown(this.get('popoverName'), this);
|
|
}
|
|
});
|
|
|
|
export default PopoverButton;
|