Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
11 years ago
|
<div class="contacts_modal_wrap">
|
||
|
|
||
|
<div class="modal-header">
|
||
|
<a class="modal-close-link visible-xs" ng-click="$close()">Close</a>
|
||
|
<h4 class="modal-title">Contacts</h4>
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-body">
|
||
|
|
||
|
<div class="contacts_modal_search">
|
||
|
<input class="form-control contacts_modal_search_field" my-focused type="search" placeholder="Search" ng-model="search.query"/>
|
||
|
<a class="contacts_modal_search_clear" ng-click="search.query = ''" ng-show="search.query.length"></a>
|
||
|
</div>
|
||
|
|
||
|
<div class="contacts_modal_members_list">
|
||
|
|
||
|
<div class="contacts_modal_contact_wrap clearfix" ng-repeat="contact in contacts | orderBy:'user.sortName' track by contact.userID">
|
||
|
<a ng-click="openUser(contact.userID)" class="contacts_modal_contact_photo pull-left">
|
||
|
<img
|
||
|
class="contacts_modal_contact_photo"
|
||
|
my-load-thumb
|
||
|
thumb="contact.userPhoto"
|
||
|
/>
|
||
|
<i class="icon status_online" ng-show="contact.user.status._ == 'userStatusOnline'"></i>
|
||
|
</a>
|
||
|
<div class="contacts_modal_contact_name">
|
||
|
<a ng-click="openUser(contact.user.id)" ng-bind-html="contact.user.rFullName"></a>
|
||
|
</div>
|
||
|
<div class="contacts_modal_contact_status">{{contact.user | userStatus}}</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|