$scope.confTransfer = function(memberID) {
console.log('$scope.confTransfer');
+ $rootScope.disableOnKeydownDtmf();
prompt({
title: $translate.instant('TITLE_TRANSFER'),
message: $translate.instant('MESSAGE_TRANSFER'),
label: $translate.instant('LABEL_TRANSFER'),
value: '',
}).then(function(exten) {
+ $rootScope.enableOnKeydownDtmf();
if (exten) {
verto.data.conf.transfer(memberID, exten);
}
+ }).catch(function(){
+ $rootScope.enableOnKeydownDtmf();
});
+
};
$scope.confToggleDeaf = function(member) {