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

15 lines
342 B
Plaintext
Raw Normal View History

export default Ember.Component.extend({
willInsertElement() {
this._super();
if (this.session.get("disableCustomCSS")) {
$("link.custom-css").attr("rel", "");
this.session.set("disableCustomCSS", false);
}
},
2015-02-20 12:18:25 -05:00
willDestroyElement() {
this._super();
2015-02-20 12:21:19 -05:00
$("link.custom-css").attr("rel", "stylesheet");
}
2015-02-20 12:18:25 -05:00
});