add toggle functionality to profile token

This commit is contained in:
Lisa P 2015-10-21 10:59:22 +02:00
parent def57c603b
commit 5f00526700
3 changed files with 14 additions and 2 deletions

View File

@ -7,4 +7,10 @@ Controller = Ember.ArrayController.extend
@get('user.name') || @get('user.login')
).property('user.login', 'user.name')
actions:
tokenVisibility: () ->
@toggleProperty('isVisible')
return false
`export default Controller`

View File

@ -100,7 +100,6 @@
li
margin: 1.5rem 0 2.5rem
a
@extend %inline-block
width: 100%
&:hover
h1, h2

View File

@ -9,7 +9,14 @@
<h1>{{userName}}</h1>
<p>Repositories <strong>{{user.reposCount}}</strong></p>
{{/link-to}}
<p class="profile-user-last">Token: <strong>{{auth.currentUser.token}}</strong></p>
<p class="profile-user-last">Token:
{{#if isVisible}}
<strong>{{auth.currentUser.token}}</strong><a {{action 'tokenVisibility'}} class="profile-token-toggle">&lharu;</a>
{{else}}
<a {{action 'tokenVisibility'}} class="profile-token-toggle">&rharu;</a>
{{/if}}
</p>
</div>
</div>
</section>