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

This patch changed the code to use the recommended .trigger("focus")
method instead of the deprecated .focus(). For more information
about this deprecation, please refer [1].

[1] https://api.jquery.com/focus-shorthand/

Change-Id: Ib743c2d5d01aa81d43b2d38efc01496b25f58b26
This commit is contained in:
manchandavishal 2023-05-09 17:20:27 +05:30
parent 852d5dc792
commit eafd2f41b7

View File

@ -169,7 +169,7 @@ horizon.modals.init_wizard = function () {
});
// Focus the first invalid field.
if (first_field) {
$field.focus();
$field.trigger('focus');
first_field = false;
}
});
@ -428,7 +428,7 @@ horizon.addInitFunction(horizon.modals.init = function() {
// Focus the first usable form field in the modal for accessibility.
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) {