mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 02:23:40 +08:00
12 lines
229 B
Plaintext
12 lines
229 B
Plaintext
|
export default Ember.Component.extend({
|
||
|
didInsertElement() {
|
||
|
this._super();
|
||
|
$('body').addClass('admin-interface');
|
||
|
},
|
||
|
|
||
|
willDestroyElement() {
|
||
|
this._super();
|
||
|
$('body').removeClass('admin-interface');
|
||
|
}
|
||
|
});
|