This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clean up seamail user list with toggle switch
- Loading branch information
Benjamin Reed
committed
Jan 23, 2016
1 parent
fc4efcb
commit 7ed0411
Showing
5 changed files
with
52 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<span ng-controller="CMSeamailUserListCtrl" class="user-list"> | ||
<div class="users" ng-if="userList.closed"> | ||
<div class="toggle"> | ||
<span ng-click="toggle($event)"> | ||
<i class="icon ion-android-arrow-dropright-circle"></i> Show Users | ||
</span> | ||
</div> | ||
</div> | ||
<div class="users" ng-if="!userList.closed"> | ||
<div class="toggle"> | ||
<span ng-click="toggle($event)"> | ||
<i class="icon ion-android-arrow-dropdown-circle"></i> Hide Users | ||
</span> | ||
</div> | ||
<span class="user" ng-click="openUser(user.username, $event)" ng-repeat="user in seamail.users track by user.username"> | ||
<img cm-cache img-src="{{twitarrRoot}}api/v2/user/photo/{{user.username}}" title="{{user.display_name}}" ng-if="twitarrRoot && user.username" /> {{user.username}} | ||
</span> | ||
</div> | ||
</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters