mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:50:24 +08:00
c182dcc64c
removes some dead code as well
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
export default Ember.Component.extend({
|
|
didInsertElement() {
|
|
this._super();
|
|
$('body').addClass('admin-interface');
|
|
},
|
|
|
|
willDestroyElement() {
|
|
this._super();
|
|
$('body').removeClass('admin-interface');
|
|
}
|
|
});
|