FS-9471 [verto_communicator] Updating In Call display after receiving display update message from mod_verto.

This commit is contained in:
Italo Rossi 2016-08-31 17:52:33 -03:00
parent a625f5ee46
commit bf3b0ca3d1
2 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,7 @@
</li> </li>
<li> <li>
<a href="" class="incall-number" ng-show="storage.data.called_number"> <a href="" class="incall-number" ng-show="storage.data.called_number">
{{ storage.data.called_number && storage.data.userStatus != 'connected' ? 'LAST_CALL' : 'IN_CALL' | translate }} {{ storage.data.called_number }} {{ storage.data.called_number && storage.data.userStatus != 'connected' ? 'LAST_CALL' : 'IN_CALL' | translate }} {{ verto.data.call ? "(" + verto.data.call.params.remote_caller_id_name + ") - " + verto.data.call.params.remote_caller_id_number : storage.data.called_number }}
</a> </a>
</li> </li>
<li class="navbar-item-icon" ng-show="verto.data.connected"> <li class="navbar-item-icon" ng-show="verto.data.connected">

View File

@ -583,6 +583,9 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
body: body body: body
}); });
break; break;
case $.verto.enum.message.display:
$rootScope.$apply(function() {});
break;
default: default:
console.warn('Got a not implemented message:', msg, dialog, params); console.warn('Got a not implemented message:', msg, dialog, params);
break; break;