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