mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +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
31 lines
533 B
JavaScript
31 lines
533 B
JavaScript
/*
|
|
|
|
Implements a div for covering the page content
|
|
when in a menu context that, for example,
|
|
should be closed when the user clicks elsewhere.
|
|
|
|
Example:
|
|
```
|
|
{{gh-content-cover onClick="closeMenus" onMouseEnter="closeAutoNav"}}
|
|
```
|
|
**/
|
|
|
|
import Ember from 'ember';
|
|
|
|
const {Component} = Ember;
|
|
|
|
export default Component.extend({
|
|
classNames: ['content-cover'],
|
|
|
|
onClick: null,
|
|
onMouseEnter: null,
|
|
|
|
click() {
|
|
this.sendAction('onClick');
|
|
},
|
|
|
|
mouseEnter() {
|
|
this.sendAction('onMouseEnter');
|
|
}
|
|
});
|