From ba4033b4f7c0bf7bc569d7ecf040d68a4bc45544 Mon Sep 17 00:00:00 2001 From: Brian Olecki Date: Mon, 31 Oct 2016 09:12:42 -0400 Subject: Update title for Integrations and Custom Emojis (#4379) --- webapp/components/emoji/components/emoji_list.jsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'webapp/components/emoji') diff --git a/webapp/components/emoji/components/emoji_list.jsx b/webapp/components/emoji/components/emoji_list.jsx index 76c509f12..a539a5537 100644 --- a/webapp/components/emoji/components/emoji_list.jsx +++ b/webapp/components/emoji/components/emoji_list.jsx @@ -27,6 +27,8 @@ export default class EmojiList extends React.Component { constructor(props) { super(props); + this.updateTitle = this.updateTitle.bind(this); + this.handleEmojiChange = this.handleEmojiChange.bind(this); this.handleUserChange = this.handleUserChange.bind(this); this.deleteEmoji = this.deleteEmoji.bind(this); @@ -47,6 +49,17 @@ export default class EmojiList extends React.Component { if (window.mm_config.EnableCustomEmoji === 'true') { loadEmoji(); } + + this.updateTitle(); + } + + updateTitle() { + let currentSiteName = ''; + if (global.window.mm_config.SiteName != null) { + currentSiteName = global.window.mm_config.SiteName; + } + + document.title = Utils.localizeMessage('custom_emoji.header', 'Custom Emoji') + ' - ' + this.props.team.display_name + ' ' + currentSiteName; } componentWillUnmount() { -- cgit v1.2.3-1-g7c22