mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
12 lines
382 B
JavaScript
12 lines
382 B
JavaScript
export default Ember.View.extend({
|
|
_disableCustomStylesheets: function() {
|
|
if (this.session.get("disableCustomCSS")) {
|
|
$("link.custom-css").attr("rel", "");
|
|
this.session.set("disableCustomCSS", false);
|
|
}
|
|
}.on("willInsertElement"),
|
|
|
|
_enableCustomStylesheets: function() {
|
|
$("link.custom-css").attr("rel", "stylesheet");
|
|
}.on("willDestroyElement")
|
|
});
|