File tree 4 files changed +10
-2
lines changed
tests/integration/components
4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11
11
</div >
12
12
<div class =" footer-social hide-on-mobile" >
13
13
{{ #each @socialLinks as |link |}}
14
- <a href ={{ link.href }} title ={{ link.title }} aria-label ={{ link.label }} >
14
+ <a href ={{ link.href }} title ={{ link.title }} aria-label ={{ link.label }} rel = " me " >
15
15
{{ svg-jar link.class }} {{ link.title }}
16
16
</a >
17
17
{{ /each }}
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ const socialLinks = [{
15
15
href : 'https://discordapp.com/invite/zT3asNS' ,
16
16
class : 'discord-logo' ,
17
17
label : 'Join the Ember Community Discord'
18
+ } , {
19
+ title : 'Mastodon' ,
20
+ href : 'https://hachyderm.io/@emberjs' ,
21
+ class : 'mastodon-logo' ,
22
+ label : 'Official Ember Mastodon Account'
18
23
} ] ;
19
24
20
25
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module('Integration | Component | es footer', function(hooks) {
13
13
const footerSocialLinks = this . element . querySelectorAll ( '.footer-social a' ) ;
14
14
const footerContribtuionsLinks = this . element . querySelectorAll ( '.footer-contributions a' ) ;
15
15
16
- assert . equal ( footerSocialLinks . length , 3 , 'social links are loading' ) ;
16
+ assert . equal ( footerSocialLinks . length , 4 , 'social links are loading' ) ;
17
17
assert . equal ( footerContribtuionsLinks . length , 5 , 'contributors links are loading' ) ;
18
18
} ) ;
19
19
} ) ;
You can’t perform that action at this time.
0 commit comments