mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-10 01:40:26 +00:00
Verto Communicator is a web interface built on top of Verto and AngularJS. Brought to you by Evolux Sistemas and FreeSWITCH team. :) FS-7795 - implements fullscreen menu and doubleclick function. FS-7795 - added chat icon on fullscreen video FS-7796 - fix missing tooltips in call icons FS-7796 - fix tooltip position FS-7798 - implements change login information in modal view FS-7828 - fix esc key bug when leave fullscren mode. Using css instead of javascript in fullscreen for elements manipulation. FS-7826 - fix chat sender id with name instead of extension FS-7831 - remove demo from title FS-7841 - fix compatibility verification FS-7842 - 'settings' data persistent FS-7859 - moved popup down FS-7827 - added screen share functionality FS-7857 - default name for source media FS-7879 - prompt before logout [incall] FS-7873 - querystring for autocall FS-7875 - persist login and password password FS-7877 - phone feature: hold, transfer, incoming, answer, decline, call direction in history FS-7878 - small devices FS-7881 - added modal dialog for contributors
59 lines
2.4 KiB
HTML
59 lines
2.4 KiB
HTML
<div class="panel panel-default phone">
|
|
<div class="panel-body phone-body">
|
|
<div class="col-md-6">
|
|
<div class="avatar">
|
|
<img />
|
|
</div>
|
|
<div class="call-info">
|
|
<h2 class="dialed-number">{{ storage.data.called_number }}</h2>
|
|
<div ng-show="!storage.data.calling" class="video-timer">
|
|
<timer start-time="start_time" autostart="false" interval="1000">{{hhours}}:{{mminutes}}:{{sseconds}}</timer>
|
|
</div>
|
|
<div ng-show="storage.data.calling" class="">
|
|
<h3>Calling</h3>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<div class="col-md-6 dialpad slide-animate-container">
|
|
<div class="slide-animate" ng-include="dialpadTemplate"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel-footer">
|
|
<div class="panel-center">
|
|
<div class="col-md-12">
|
|
<ul>
|
|
<li>
|
|
<button tooltips="" tooltip-title="Dialpad" tooltip-side="bottom" tooltip-lazy="false" class="btn btn-material-900" ng-click="toggleDialpad()">
|
|
<i class="big-icon mdi-communication-dialpad"></i>
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button tooltips="" tooltip-title="(un)Mute Mic" tooltip-side="bottom" tooltip-lazy="false" class="btn btn-material-900" ng-click="muteMic()">
|
|
<i class="big-icon" ng-class="{'mdi-av-mic': !verto.data.mutedMic, 'mdi-av-mic-off': verto.data.mutedMic}"></i>
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button tooltips="" tooltip-title="Hold" tooltip-side="bottom" tooltip-lazy="false" class="btn btn-material-900" ng-click="hold()">
|
|
<i class="big-icon" ng-class="{'mdi-av-pause':!storage.data.onHold, 'mdi-av-play-arrow': storage.data.onHold}"></i>
|
|
</button>
|
|
</li>
|
|
<!--<li>
|
|
<button tooltips="" tooltip-title="Video Call" tooltip-side="bottom" tooltip-lazy="false" class="btn btn-material-900" ng-click="videoCall()">
|
|
<i class="big-icon mdi-notification-voice-chat"></i>
|
|
</button>
|
|
</li>-->
|
|
<li class="hangup-button">
|
|
<button tooltips="" tooltip-title="Hangup" tooltip-side="bottom" tooltip-lazy="false" class="btn btn-danger btn-fab btn-raised mdi-communication-call-end" ng-click="hangup()">
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|