fix: Fix CSS query selectors (#4372)
This commit is contained in:
parent
1dfd0cbf47
commit
e666894d55
|
@ -449,7 +449,7 @@ $("#deps-modal")
|
|||
.replaceWith(dep_el);
|
||||
dep_sim.restart();
|
||||
|
||||
$('svg [title][title!=""]')
|
||||
$('svg [title]:not([title=""])')
|
||||
.tooltip();
|
||||
|
||||
$("#legend")
|
||||
|
@ -467,7 +467,7 @@ $("#deps-modal")
|
|||
dep_sim.restart();
|
||||
}
|
||||
|
||||
$('svg [title][title!=""]')
|
||||
$('svg [title]:not([title=""])')
|
||||
.tooltip();
|
||||
});
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ jQuery.ajaxSetup({
|
|||
// Use the Bootstrap tooltip plugin for all elements with a title attribute
|
||||
$(document)
|
||||
.ready(function () {
|
||||
$('[title][title!=""]')
|
||||
$("[title]:not([title=''])")
|
||||
.tooltip();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue