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