24
1
Fork 0

updated footer links

This commit is contained in:
Danny Coates 2019-02-13 13:09:57 -08:00
parent 26d6606e09
commit be8e507d25
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
2 changed files with 3 additions and 15 deletions

View File

@ -31,23 +31,18 @@ class Footer extends Component {
class="list-reset flex flex-col md:flex-row items-start md:items-center md:justify-end"
>
<li class="m-2">
<a href="https://www.mozilla.org/about/legal">
<a href="https://www.mozilla.org/about/legal/terms/services/#send">
${translate('footerLinkLegal')}
</a>
</li>
<li class="m-2">
<a href="/legal"> ${translate('footerLinkTerms')} </a>
<a href="/legal"> ${translate('footerLinkPrivacy')} </a>
</li>
<li class="m-2">
<a href="https://www.mozilla.org/privacy/websites/#cookies">
${translate('footerLinkCookies')}
</a>
</li>
<li class="m-2">
<a href="https://www.mozilla.org/about/legal/report-infringement/">
${translate('reportIPInfringement')}
</a>
</li>
<li class="m-2">
<a href="https://github.com/mozilla/send">GitHub </a>
</li>

View File

@ -5,14 +5,7 @@ const HomePage = require('./pages/desktop/home_page');
describe('Firefox Send homepage', function() {
const homePage = new HomePage();
const baseUrl = browser.options['baseUrl'];
const footerLinks = [
'mozilla',
'legal',
'legal',
'cookies',
'report-infringement',
'github'
];
const footerLinks = ['mozilla', 'legal', 'legal', 'cookies', 'github'];
beforeEach(function() {
homePage.open();