FS-8591 [verto_communicator] restoring chat send button behavior
This commit is contained in:
parent
1911cd1bb4
commit
ee12caebd2
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
@ -199,7 +200,9 @@
|
||||||
// Only conferencing chat is supported for now
|
// Only conferencing chat is supported for now
|
||||||
// but still calling method with the conference prefix
|
// but still calling method with the conference prefix
|
||||||
// so we know that explicitly.
|
// so we know that explicitly.
|
||||||
event.preventDefault();
|
if (event && event.type == 'keydown') {
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
verto.sendConferenceChat($scope.message);
|
verto.sendConferenceChat($scope.message);
|
||||||
$scope.message = CLEAN_MESSAGE;
|
$scope.message = CLEAN_MESSAGE;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue