Merge "Fix deprecated use of 'jQuery.fn.focus()' shorthand event"

This commit is contained in:
Zuul 2023-05-09 20:12:25 +00:00 committed by Gerrit Code Review
commit 3be3878be3

View File

@ -169,7 +169,7 @@ horizon.modals.init_wizard = function () {
}); });
// Focus the first invalid field. // Focus the first invalid field.
if (first_field) { if (first_field) {
$field.focus(); $field.trigger('focus');
first_field = false; first_field = false;
} }
}); });
@ -428,7 +428,7 @@ horizon.addInitFunction(horizon.modals.init = function() {
// Focus the first usable form field in the modal for accessibility. // Focus the first usable form field in the modal for accessibility.
horizon.modals.addModalInitFunction(function (modal) { horizon.modals.addModalInitFunction(function (modal) {
$(modal).find(":text, select, textarea").filter(":visible:first").focus(); $(modal).find(":text, select, textarea").filter(":visible:first").trigger("focus");
}); });
horizon.modals.addModalInitFunction(function(modal) { horizon.modals.addModalInitFunction(function(modal) {