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

This commit is contained in:
Zuul 2023-04-24 21:46:44 +00:00 committed by Gerrit Code Review
commit d66f75ba19

View File

@ -382,7 +382,7 @@ horizon.flat_network_topology = {
this._portdata.port_margin = d.port_margin; this._portdata.port_margin = d.port_margin;
this._portdata.left = 0; this._portdata.left = 0;
this._portdata.right = 0; this._portdata.right = 0;
$(this).mouseenter(function(e){ $(this).on('mouseenter', function(e){
e.stopPropagation(); e.stopPropagation();
}); });
}); });