Merge pull request #4869 from mabashian/4192-enter-textarea

Unbind keydown listeners when Alert modals are closed.

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-10-02 15:11:21 +00:00 committed by GitHub
commit 329630ce2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,9 +89,11 @@ angular.module('Utilities', ['RestServices', 'Utilities'])
scope.disableButtons2 = (disableButtons) ? true : false;
$('#alert-modal2').on('hidden.bs.modal', function() {
$(document).unbind('keydown');
if (action) {
action();
}
$('#alert-modal2').off();
});
$('#alert-modal2').on('shown.bs.modal', function() {
$('#alert2_ok_btn').focus();
@ -117,10 +119,12 @@ angular.module('Utilities', ['RestServices', 'Utilities'])
});
$('#alert-modal').on('hidden.bs.modal', function() {
$(document).unbind('keydown');
if (action) {
action();
}
$('.modal-backdrop').remove();
$('#alert-modal').off();
});
$('#alert-modal').on('shown.bs.modal', function() {
$('#alert_ok_btn').focus();