mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 13:03:39 +08:00
FIX: add short description to title on client side
This commit is contained in:
parent
1569cf85df
commit
77af097ce0
|
@ -22,6 +22,7 @@ function unlessReadOnly(method, message) {
|
|||
|
||||
const ApplicationRoute = Discourse.Route.extend(OpenComposer, {
|
||||
siteTitle: setting("title"),
|
||||
shortSiteDescription: setting("short_site_description"),
|
||||
|
||||
actions: {
|
||||
toggleAnonymous() {
|
||||
|
@ -41,6 +42,9 @@ const ApplicationRoute = Discourse.Route.extend(OpenComposer, {
|
|||
|
||||
_collectTitleTokens(tokens) {
|
||||
tokens.push(this.get("siteTitle"));
|
||||
if (window.location.pathname === Discourse.getURL("/")) {
|
||||
tokens.push(this.get("shortSiteDescription"));
|
||||
}
|
||||
Discourse.set("_docTitle", tokens.join(" - "));
|
||||
},
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ required:
|
|||
default: ""
|
||||
short_site_description:
|
||||
default: ""
|
||||
client: true
|
||||
contact_email:
|
||||
client: true
|
||||
default: ""
|
||||
|
|
Loading…
Reference in New Issue
Block a user