diff options
| -rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/main.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/main.js b/bitbake/lib/toaster/toastergui/static/js/main.js index dc96564b17..ce4f578112 100644 --- a/bitbake/lib/toaster/toastergui/static/js/main.js +++ b/bitbake/lib/toaster/toastergui/static/js/main.js | |||
| @@ -44,6 +44,11 @@ $(document).ready(function() { | |||
| 44 | // enable tooltips for applied filters | 44 | // enable tooltips for applied filters |
| 45 | $('th a.btn-primary').tooltip({container:'body', html:true, placement:'bottom', delay:{hide:1500}}); | 45 | $('th a.btn-primary').tooltip({container:'body', html:true, placement:'bottom', delay:{hide:1500}}); |
| 46 | 46 | ||
| 47 | // hide applied filter tooltip when you click on the filter button | ||
| 48 | $('th a.btn-primary').click(function () { | ||
| 49 | $('.tooltip').hide(); | ||
| 50 | }); | ||
| 51 | |||
| 47 | // enable help information tooltip | 52 | // enable help information tooltip |
| 48 | $(".get-help").tooltip({container:'body', html:true, delay:{show:300}}); | 53 | $(".get-help").tooltip({container:'body', html:true, delay:{show:300}}); |
| 49 | 54 | ||
