summaryrefslogtreecommitdiff
path: root/horizon/static/horizon/js/horizon.forms.js
diff options
context:
space:
mode:
authormanchandavishal <manchandavishal143@gmail.com>2023-05-09 16:19:41 +0530
committermanchandavishal <manchandavishal143@gmail.com>2023-05-09 16:23:55 +0530
commitba47352a73f4dd3c499c54f7d68e2bca0b1fb879 (patch)
treefd8db09b2b5652794bf2aef2923f389bfbad6e89 /horizon/static/horizon/js/horizon.forms.js
parent852d5dc7922abe0b9d2a3e26ed6ede9902a2da47 (diff)
downloadhorizon-ba47352a73f4dd3c499c54f7d68e2bca0b1fb879.tar.gz
Fix deprecated use of 'jQuery.fn.change()' shorthand event
This patch changed the code to use the recommended .trigger("change") method instead of the deprecated .change(). For more information about this deprecation, please refer [1]. [1] https://api.jquery.com/change-shorthand/ Change-Id: I762485c979cc5032db9a080d97d74f4be6efbcaf
Diffstat (limited to 'horizon/static/horizon/js/horizon.forms.js')
-rw-r--r--horizon/static/horizon/js/horizon.forms.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/horizon/static/horizon/js/horizon.forms.js b/horizon/static/horizon/js/horizon.forms.js
index 27a7e9bd6..832ea439f 100644
--- a/horizon/static/horizon/js/horizon.forms.js
+++ b/horizon/static/horizon/js/horizon.forms.js
@@ -279,7 +279,7 @@ horizon.forms.init_themable_select = function ($elem) {
// Set the select if necessary
if ($select.val() !== value) {
- $select.val(value).change();
+ $select.val(value).trigger("change");
}
});
@@ -318,7 +318,7 @@ horizon.forms.init_themable_select = function ($elem) {
}
// Add the new list to the dropdown.
- $select.siblings('.dropdown-menu').html(list).change();
+ $select.siblings('.dropdown-menu').html(list).trigger("change");
$select.trigger('change');
});