mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
5fc150e057
Properly sends the title of the page to google analytics
9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
Discourse.AdminRoute = Discourse.Route.extend({
|
|
renderTemplate: function() {
|
|
this.render('admin/templates/admin');
|
|
},
|
|
|
|
titleToken: function() {
|
|
return I18n.t('admin_title');
|
|
}
|
|
});
|