mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
32 lines
839 B
JavaScript
32 lines
839 B
JavaScript
import Ember from 'ember';
|
|
// mixin used for routes that need to set a css className on the body tag
|
|
|
|
var styleBody = Ember.Mixin.create({
|
|
activate: function () {
|
|
this._super();
|
|
|
|
var cssClasses = this.get('classNames');
|
|
|
|
if (cssClasses) {
|
|
Ember.run.schedule('afterRender', null, function () {
|
|
cssClasses.forEach(function (curClass) {
|
|
Ember.$('body').addClass(curClass);
|
|
});
|
|
});
|
|
}
|
|
},
|
|
|
|
deactivate: function () {
|
|
this._super();
|
|
|
|
var cssClasses = this.get('classNames');
|
|
|
|
Ember.run.schedule('afterRender', null, function () {
|
|
cssClasses.forEach(function (curClass) {
|
|
Ember.$('body').removeClass(curClass);
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
export default styleBody;
|