Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addon/components/es-footer-info.hbs
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
</div>
<div class="footer-social hide-on-mobile">
{{#each @socialLinks as |link|}}
<a href={{link.href}} title={{link.title}} aria-label={{link.label}}>
<a href={{link.href}} title={{link.title}} aria-label={{link.label}} rel="me">
{{svg-jar link.class}} {{link.title}}
</a>
{{/each}}
5 changes: 5 additions & 0 deletions addon/constants/es-footer.js
Original file line number Diff line number Diff line change
@@ -15,6 +15,11 @@ const socialLinks = [{
href: 'https://discordapp.com/invite/zT3asNS',
class: 'discord-logo',
label: 'Join the Ember Community Discord'
}, {
title: 'Mastodon',
href: 'https://hachyderm.io/@emberjs',
class: 'mastodon-logo',
label: 'Official Ember Mastodon Account'
}];


3 changes: 3 additions & 0 deletions public/images/icons/mastodon-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tests/integration/components/es-footer-test.js
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ module('Integration | Component | es footer', function(hooks) {
const footerSocialLinks = this.element.querySelectorAll('.footer-social a');
const footerContribtuionsLinks = this.element.querySelectorAll('.footer-contributions a');

assert.equal(footerSocialLinks.length, 3, 'social links are loading');
assert.equal(footerSocialLinks.length, 4, 'social links are loading');
assert.equal(footerContribtuionsLinks.length, 5, 'contributors links are loading');
});
});