discourse/app/assets/javascripts/admin/components/disable-custom-stylesheets....

15 lines
342 B
JavaScript

export default Ember.Component.extend({
willInsertElement() {
this._super();
if (this.session.get("disableCustomCSS")) {
$("link.custom-css").attr("rel", "");
this.session.set("disableCustomCSS", false);
}
},
willDestroyElement() {
this._super();
$("link.custom-css").attr("rel", "stylesheet");
}
});