Merge pull request #442 in FS/freeswitch from ~JMESQUITA/freeswitch:feature/FS-8001-double-click-from-call-history-to to master
* commit 'ea0d1ebf5498cfe0927af31af166e68e91d1536d': FS-8001: [verto_communicator] For this to work, passing in the parameter was missing.
This commit is contained in:
commit
581917eb79
|
@ -21,7 +21,7 @@
|
|||
</div>
|
||||
|
||||
<li ng-repeat="call in storage.data.call_history">
|
||||
<a ng-show="call.number" href="" ng-dblclick="$parent.call()" ng-click="$parent.fillDialpadNumber(call.number)">
|
||||
<a ng-show="call.number" href="" ng-dblclick="$parent.call(call.number)" ng-click="$parent.fillDialpadNumber(call.number)">
|
||||
<i ng-show="call.direction == 'inbound'" ng-class="{'mdi-communication-call-missed': !call.status,'mdi-communication-call-received': call.status}"></i>
|
||||
<i ng-show="call.direction == 'outbound'" class="mdi-communication-call-made"></i>
|
||||
<h2 class="dialpad-number dialpad-number-limited">{{ call.number }}</h2>
|
||||
|
|
Loading…
Reference in New Issue