Skip to content

Commit 0724227

Browse files
authored
Merge branch 'master' into esbanarango/123-es-footer-to-angle-bracket-component
2 parents d2a6755 + a1c3be4 commit 0724227

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

addon/constants/es-footer.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,22 @@ const socialLinks = [{
1616

1717
const contributorLinks = [{
1818
name: 'Hosted by:',
19+
title: "Heroku",
1920
href: 'https://www.heroku.com/emberjs',
2021
class: 'heroku-logo'
2122
}, {
2223
name: 'CDN provided by:',
24+
title: "Fastly",
2325
href: 'https://www.fastly.com',
2426
class: 'fastly-logo'
2527
}, {
2628
name: 'Tested with:',
29+
title: "Percy",
2730
href: 'https://percy.io',
2831
class: 'percy-logo'
2932
}, {
3033
name: 'Resolved with:',
34+
title: "Dnsimple",
3135
href: 'https://dnsimple.com/resolving/emberjs',
3236
class: 'dnsimple-logo-dark'
3337
}];

addon/templates/components/es-footer/es-contributions.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{{#each contributorLinks as |link|}}
66
<div class="contributor">
77
<p>{{link.name}}</p>
8-
<a href={{link.href}}>
8+
<a href={{link.href}} title={{link.title}}>
99
{{svg-jar link.class class="contributor-logo"}}
1010
</a>
1111
</div>

0 commit comments

Comments
 (0)