Ghost/ghost/admin/app/components/gh-content-cover.js
Kevin Ansfield f07940f0e7 Collapsed @service injection definitions to single-line style
no issue

- find+replace to make service injection style consistent and take up much less space at the top of files that used multi-line syntax
2022-02-01 17:03:54 +00:00

27 lines
546 B
JavaScript

import classic from 'ember-classic-decorator';
import {classNames} from '@ember-decorators/component';
import {inject as service} from '@ember/service';
/*
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}}
```
**/
import Component from '@ember/component';
@classic
@classNames('content-cover')
export default class GhContentCover extends Component {
@service ui;
click() {
this.ui.closeMenus();
}
}