mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 02:18:33 +08:00
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");
|
|
}
|
|
});
|