-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
open existing chats if they exist, fetch all channels to check that
- Loading branch information
Showing
7 changed files
with
111 additions
and
72 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<div class='roster' resize-height> | ||
<div class='roster' resize-height bottom-margin="130" max-height="620"> | ||
<div class='roster-member' ng-repeat="user in getRoster() | orderBy:['username']"> | ||
<img width=25 height=25 alt='roster icon for {{ user.username }}' class='hidden-phone' ng-src="{{ user.avatar_image.url }}?w=25"> | ||
<span class='username'><a href='/new-message?to={{user.id}}'><strong>@{{user.username}}</strong></a> <a class='profile-link yui3-u-none m-yui3-u t-yui3-u' alt='go to profile' href='{{alpha_url_base}}/{{user.username}}'><i class='icon-user'></i></a></span> | ||
<span class='username'><a href='#' ng-click='getChatUrl(user.id)'><strong>@{{user.username}}</strong></a> <a class='profile-link yui3-u-none m-yui3-u t-yui3-u' alt='go to profile' href='{{alpha_url_base}}/{{user.username}}'><i class='icon-user'></i></a></span> | ||
</div> | ||
</div> |