mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
15 lines
313 B
JavaScript
15 lines
313 B
JavaScript
Discourse.AdminRoute = Discourse.Route.extend({
|
|
titleToken: function() {
|
|
return I18n.t('admin_title');
|
|
},
|
|
|
|
activate: function() {
|
|
this._super();
|
|
$("link.custom-css").attr("rel", "");
|
|
},
|
|
|
|
deactivate: function() {
|
|
this._super();
|
|
$("link.custom-css").attr("rel", "stylesheet");
|
|
}
|
|
});
|