summaryrefslogtreecommitdiff
path: root/horizon/static/horizon/js/horizon.modals.js
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/static/horizon/js/horizon.modals.js')
-rw-r--r--horizon/static/horizon/js/horizon.modals.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/horizon/static/horizon/js/horizon.modals.js b/horizon/static/horizon/js/horizon.modals.js
index 87e546ca2..cbad7dd1d 100644
--- a/horizon/static/horizon/js/horizon.modals.js
+++ b/horizon/static/horizon/js/horizon.modals.js
@@ -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) {