summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-04-24 21:46:44 +0000
committerGerrit Code Review <review@openstack.org>2023-04-24 21:46:44 +0000
commitd66f75ba19d232ecdbc034153f4923620b784f6d (patch)
treebec0b5584b5af9d34321a4f9fa3a4a9221e54b4f
parent604ae7a0d075f15dda117023c97891e4f246b9bd (diff)
parent6d34551c1c5bf028633511e37011b27d44a8036d (diff)
downloadhorizon-d66f75ba19d232ecdbc034153f4923620b784f6d.tar.gz
Merge "Fix deprecated use of 'jQuery.fn.mouseenter()' shorthand event"
-rw-r--r--openstack_dashboard/static/js/horizon.flatnetworktopology.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack_dashboard/static/js/horizon.flatnetworktopology.js b/openstack_dashboard/static/js/horizon.flatnetworktopology.js
index 944b6f4f1..33d355b93 100644
--- a/openstack_dashboard/static/js/horizon.flatnetworktopology.js
+++ b/openstack_dashboard/static/js/horizon.flatnetworktopology.js
@@ -382,7 +382,7 @@ horizon.flat_network_topology = {
this._portdata.port_margin = d.port_margin;
this._portdata.left = 0;
this._portdata.right = 0;
- $(this).mouseenter(function(e){
+ $(this).on('mouseenter', function(e){
e.stopPropagation();
});
});