summaryrefslogtreecommitdiffstats
path: root/webapp/components/header_footer_template.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-04-28 17:03:59 -0700
committer=Corey Hulen <corey@hulen.com>2016-04-28 17:03:59 -0700
commit62901defaebb8f3524bdfcad86b2576cfd9fe587 (patch)
treeb0740451c56c68c5284834fd02bbce4d831acc17 /webapp/components/header_footer_template.jsx
parentad9dfc9c42b6597515d9eb0a96e9f069372dffdd (diff)
parentf3fa435a1b35c2ada4cd9a81744a41904fe97909 (diff)
downloadchat-62901defaebb8f3524bdfcad86b2576cfd9fe587.tar.gz
chat-62901defaebb8f3524bdfcad86b2576cfd9fe587.tar.bz2
chat-62901defaebb8f3524bdfcad86b2576cfd9fe587.zip
Merge branch 'master' of https://github.com/mattermost/platform
Diffstat (limited to 'webapp/components/header_footer_template.jsx')
-rw-r--r--webapp/components/header_footer_template.jsx29
1 files changed, 16 insertions, 13 deletions
diff --git a/webapp/components/header_footer_template.jsx b/webapp/components/header_footer_template.jsx
index ce2f59541..76061d532 100644
--- a/webapp/components/header_footer_template.jsx
+++ b/webapp/components/header_footer_template.jsx
@@ -5,7 +5,6 @@ import $ from 'jquery';
import {FormattedMessage} from 'react-intl';
import React from 'react';
-import {Link} from 'react-router';
export default class NotLoggedIn extends React.Component {
componentDidMount() {
@@ -30,34 +29,38 @@ export default class NotLoggedIn extends React.Component {
</div>
<div className='col-xs-12'>
<span className='pull-right footer-link copyright'>{'© 2015 Mattermost, Inc.'}</span>
- <Link
+ <a
id='help_link'
className='pull-right footer-link'
- to={global.window.mm_config.HelpLink}
+ target='_blank'
+ href={global.window.mm_config.HelpLink}
>
<FormattedMessage id='web.footer.help'/>
- </Link>
- <Link
+ </a>
+ <a
id='terms_link'
className='pull-right footer-link'
- to={global.window.mm_config.TermsOfServiceLink}
+ target='_blank'
+ href={global.window.mm_config.TermsOfServiceLink}
>
<FormattedMessage id='web.footer.terms'/>
- </Link>
- <Link
+ </a>
+ <a
id='privacy_link'
className='pull-right footer-link'
- to={global.window.mm_config.PrivacyPolicyLink}
+ target='_blank'
+ href={global.window.mm_config.PrivacyPolicyLink}
>
<FormattedMessage id='web.footer.privacy'/>
- </Link>
- <Link
+ </a>
+ <a
id='about_link'
className='pull-right footer-link'
- to={global.window.mm_config.AboutLink}
+ target='_blank'
+ href={global.window.mm_config.AboutLink}
>
<FormattedMessage id='web.footer.about'/>
- </Link>
+ </a>
</div>
</div>
</div>