mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-07-10 09:13:24 +00:00
FS-9346 [verto_communicator] Add DTMF icon while on a video call, fixing conferences with pin number
This commit is contained in:
parent
6621bdcdd4
commit
f6ad006daf
@ -1,17 +1,7 @@
|
|||||||
<div class="panel panel-default shadow-z-2" ng-class="{'shadow-z-4': call_history, 'shadow-z-2': !call_history}">
|
<div class="panel panel-default shadow-z-2" ng-class="{'shadow-z-2': !call_history}">
|
||||||
<form name="form">
|
<form name="form">
|
||||||
<div class="input-group dialpad-display">
|
<div class="input-group dialpad-display">
|
||||||
<span ng-show="!incall" class="input-group-btn-left">
|
<input name="dialpadnumber" type="text" class="form-control text-center" placeholder="" ng-model="dialpadNumber" />
|
||||||
<a href="" ng-click="toggleCallHistory()">
|
|
||||||
<i class="mdi-action-settings-phone"></i>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
<input name="dialpadnumber" type="text" class="form-control text-center" placeholder="Enter an extension" ng-model="dialpadNumber" />
|
|
||||||
<span class="input-group-btn">
|
|
||||||
<a href="" ng-click="backspace()">
|
|
||||||
<i class="mdi-content-backspace"></i>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div class="dialpad-numbers">
|
<div class="dialpad-numbers">
|
||||||
@ -96,16 +86,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group text-center">
|
|
||||||
<button type="submit" class="btn btn-success btn-fab" ng-click="call(); ok()" title="Call Extension">
|
|
||||||
<i class="mdi-communication-call"></i>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button type="submit" class="btn btn-primary btn-fab" ng-click="transfer(); ok()" title="Transfer">
|
|
||||||
<i class="mdi-notification-phone-forwarded"></i>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
@ -68,6 +68,9 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<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>
|
||||||
<div class="btn-group" ng-show="conf.canvasCount > 1">
|
<div class="btn-group" ng-show="conf.canvasCount > 1">
|
||||||
<button tooltip-placement="bottom" tooltip-title="{{'MESSAGE_POPUP' | translate}}" uib-tooltips="{{'MESSAGE_POPUP' | translate}}" type="button" class="btn btn-material-blue-900 dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
<button tooltip-placement="bottom" tooltip-title="{{'MESSAGE_POPUP' | translate}}" uib-tooltips="{{'MESSAGE_POPUP' | translate}}" type="button" class="btn btn-material-blue-900 dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
<i class="mdi-image-filter-none"></i>
|
<i class="mdi-image-filter-none"></i>
|
||||||
|
@ -896,7 +896,7 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
data.call.dtmf(number);
|
data.call.dtmf(number.toString());
|
||||||
console.debug('The DTMF was sent for the call.');
|
console.debug('The DTMF was sent for the call.');
|
||||||
|
|
||||||
if (angular.isFunction(callback)) {
|
if (angular.isFunction(callback)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user