mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:54:23 +08:00
use the view instead
This commit is contained in:
parent
043e522f39
commit
cd423f4a43
|
@ -1,15 +1,5 @@
|
|||
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");
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
export default Ember.View.extend({
|
||||
_onInsert: function() {
|
||||
export default Discourse.View.extend({
|
||||
_disableCustomStylesheets: function() {
|
||||
$("link.custom-css").attr("rel", "");
|
||||
}.on("willInsertElement"),
|
||||
|
||||
}.on('didInsertElement')
|
||||
_enableCustomStylesheets: function() {
|
||||
$("link.custom-css").attr("rel", "stylesheet");
|
||||
}.on("willDestroyElement")
|
||||
});
|
||||
|
||||
|
|
|
@ -151,7 +151,7 @@ module ApplicationHelper
|
|||
|
||||
|
||||
def customization_disabled?
|
||||
controller.class.name.split("::").first == "Admin" || session[:disable_customization]
|
||||
session[:disable_customization]
|
||||
end
|
||||
|
||||
def category_badge(category, opts=nil)
|
||||
|
|
Loading…
Reference in New Issue
Block a user