Skip to content

Commit

Permalink
Add back span controlling account expand/collapse arrow.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucyhe committed Jun 22, 2015
1 parent abe0dca commit 41afe82
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/generic_ui/polymer/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,10 @@
<div class='clickable currentAccountInfo' on-tap='{{ toggleAccountChooser }}'>
<div horizontal center layout>
<span class='subdued' flex>{{ connectedNetworks }}</span>
<core-icon icon='arrow-drop-down' hidden?='{{ model.onlineNetworks.length === 1 || accountChooserOpen }}'></core-icon>
<core-icon icon='arrow-drop-up' hidden?='{{ model.onlineNetworks.length === 1 || !accountChooserOpen }}'></core-icon>
<span hidden?='{{ model.onlineNetworks.length === 1 }}'>
<core-icon icon='arrow-drop-down' hidden?='{{ accountChooserOpen }}'></core-icon>
<core-icon icon='arrow-drop-up' hidden?='{{ !accountChooserOpen }}'></core-icon>
</span>
</span>
</div>

Expand Down

0 comments on commit 41afe82

Please sign in to comment.