2014-07-18 18:38:28 -03:00
|
|
|
<div ng-controller="VideoController">
|
2014-07-22 18:15:19 -03:00
|
|
|
<div class="video-box" ng-repeat="copayer in copayersList()">
|
2014-07-18 18:38:28 -03:00
|
|
|
<video
|
|
|
|
|
ng-if="hasVideo(copayer)"
|
|
|
|
|
peer="{{copayer}}" avatar autoplay
|
2014-08-25 19:13:25 -03:00
|
|
|
ng-class="true || isConnected(copayer) ? 'online' : 'offline'"
|
2014-07-18 18:38:28 -03:00
|
|
|
ng-src="{{getVideoURL(copayer)}}"></video>
|
|
|
|
|
|
|
|
|
|
<img
|
2014-07-22 17:40:12 -03:00
|
|
|
class="br100 no-video"
|
2014-07-18 18:38:28 -03:00
|
|
|
ng-if="!hasVideo(copayer)"
|
2014-08-25 19:13:25 -03:00
|
|
|
ng-class="true || isConnected(copayer) ? 'online' : 'offline'"
|
2014-07-18 18:38:28 -03:00
|
|
|
src="./img/satoshi.gif"
|
2014-07-22 17:40:12 -03:00
|
|
|
alt="{{copayer}}"
|
|
|
|
|
width="70">
|
2014-07-18 18:38:28 -03:00
|
|
|
|
|
|
|
|
<div
|
2014-07-23 17:10:02 -03:00
|
|
|
class="ellipsis"
|
2014-07-18 18:38:28 -03:00
|
|
|
tooltip="ID: {{copayer.peerId}}"
|
|
|
|
|
tooltip-placement="bottom">
|
2014-08-04 10:14:03 -03:00
|
|
|
<small class="text-gray" ng-show="copayer.index == 0"><i class="fi-check m5r"></i>Me</small>
|
2014-07-22 17:40:12 -03:00
|
|
|
<small class="text-gray" ng-show="copayer.index > 0"><i class="fi-check m5r"></i>{{copayer.nick}}</small>
|
2014-07-18 18:38:28 -03:00
|
|
|
</div>
|
|
|
|
|
|
2014-07-22 17:40:12 -03:00
|
|
|
<div class="success label m10t" ng-show="isBackupReady(copayer)">
|
2014-07-18 18:38:28 -03:00
|
|
|
Backup ready
|
|
|
|
|
</div>
|
2014-07-16 17:59:28 -03:00
|
|
|
</div>
|
|
|
|
|
</div>
|