2015-02-20 12:21:19 -05:00
|
|
|
export default Discourse.View.extend({
|
|
|
|
_disableCustomStylesheets: function() {
|
2015-03-02 17:31:04 -05:00
|
|
|
if (this.session.get("disableCustomCSS")) {
|
|
|
|
$("link.custom-css").attr("rel", "");
|
|
|
|
this.session.set("disableCustomCSS", false);
|
|
|
|
}
|
2015-02-20 12:21:19 -05:00
|
|
|
}.on("willInsertElement"),
|
2015-02-20 12:18:25 -05:00
|
|
|
|
2015-02-20 12:21:19 -05:00
|
|
|
_enableCustomStylesheets: function() {
|
|
|
|
$("link.custom-css").attr("rel", "stylesheet");
|
|
|
|
}.on("willDestroyElement")
|
2015-02-20 12:18:25 -05:00
|
|
|
});
|