summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/libtoaster.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
index c04f7aba2b..1012034404 100644
--- a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
+++ b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
@@ -448,10 +448,12 @@ $(document).ready(function() {
448 448
449 // show help bubble only on hover inside tables 449 // show help bubble only on hover inside tables
450 $(".hover-help").css("visibility","hidden"); 450 $(".hover-help").css("visibility","hidden");
451 $("th, td").hover(function () { 451
452 $("table").on("mouseover", "th, td", function () {
452 $(this).find(".hover-help").css("visibility","visible"); 453 $(this).find(".hover-help").css("visibility","visible");
453 }); 454 });
454 $("th, td").mouseleave(function () { 455
456 $("table").on("mouseleave", "th, td", function () {
455 $(this).find(".hover-help").css("visibility","hidden"); 457 $(this).find(".hover-help").css("visibility","hidden");
456 }); 458 });
457 459