mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
2f4f6db133
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
21 lines
588 B
JavaScript
21 lines
588 B
JavaScript
import Ember from 'ember';
|
|
// This is used by the dropdown initializer (and subsequently popovers) to manage closing & toggling
|
|
import BodyEventListener from 'ghost/mixins/body-event-listener';
|
|
|
|
const {Service, Evented} = Ember;
|
|
|
|
export default Service.extend(Evented, BodyEventListener, {
|
|
bodyClick(event) {
|
|
/*jshint unused:false */
|
|
this.closeDropdowns();
|
|
},
|
|
|
|
closeDropdowns() {
|
|
this.trigger('close');
|
|
},
|
|
|
|
toggleDropdown(dropdownName, dropdownButton) {
|
|
this.trigger('toggle', {target: dropdownName, button: dropdownButton});
|
|
}
|
|
});
|