983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
33 lines
845 B
JavaScript
33 lines
845 B
JavaScript
import $ from 'jquery';
|
|
import Mixin from '@ember/object/mixin';
|
|
import {run} from '@ember/runloop';
|
|
|
|
// mixin used for routes that need to set a css className on the body tag
|
|
export default Mixin.create({
|
|
activate() {
|
|
let cssClasses = this.get('classNames');
|
|
|
|
this._super(...arguments);
|
|
|
|
if (cssClasses) {
|
|
run.schedule('afterRender', null, function () {
|
|
cssClasses.forEach((curClass) => {
|
|
$('body').addClass(curClass);
|
|
});
|
|
});
|
|
}
|
|
},
|
|
|
|
deactivate() {
|
|
let cssClasses = this.get('classNames');
|
|
|
|
this._super(...arguments);
|
|
|
|
run.schedule('afterRender', null, function () {
|
|
cssClasses.forEach((curClass) => {
|
|
$('body').removeClass(curClass);
|
|
});
|
|
});
|
|
}
|
|
});
|