Remove peerjs
This commit is contained in:
parent
e73a3f8160
commit
ac78e2d1e7
9 changed files with 21 additions and 84 deletions
29
views/includes/copayer.html
Normal file
29
views/includes/copayer.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<div ng-controller="VideoController">
|
||||
<div class="video-box" ng-repeat="copayer in copayersList()">
|
||||
<video
|
||||
ng-if="hasVideo(copayer)"
|
||||
peer="{{copayer}}" avatar autoplay
|
||||
ng-class="true || isConnected(copayer) ? 'online' : 'offline'"
|
||||
ng-src="{{getVideoURL(copayer)}}"></video>
|
||||
|
||||
<img
|
||||
class="br100 no-video"
|
||||
ng-if="!hasVideo(copayer)"
|
||||
ng-class="true || isConnected(copayer) ? 'online' : 'offline'"
|
||||
src="./img/satoshi.gif"
|
||||
alt="{{copayer}}"
|
||||
width="70">
|
||||
|
||||
<div
|
||||
class="ellipsis"
|
||||
tooltip="ID: {{copayer.peerId}}"
|
||||
tooltip-placement="bottom">
|
||||
<small class="text-gray" ng-show="copayer.index == 0"><i class="fi-check m5r"></i>Me</small>
|
||||
<small class="text-gray" ng-show="copayer.index > 0"><i class="fi-check m5r"></i>{{copayer.nick}}</small>
|
||||
</div>
|
||||
|
||||
<div class="success label m10t" ng-show="isBackupReady(copayer)">
|
||||
Backup ready
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue