summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static
diff options
context:
space:
mode:
authorBelen Barros <belen.barros.pena@intel.com>2014-02-03 15:35:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-17 15:38:52 +0000
commit4157c3849f1f8083b11ec3658b4f74b3e68dea2d (patch)
treeccfd3eb1fe13ef77a820229d250c7b9d23f5f160 /bitbake/lib/toaster/toastergui/static
parent985017af3dd73c58ff6fa6e6e7cc630e56ba9445 (diff)
downloadpoky-4157c3849f1f8083b11ec3658b4f74b3e68dea2d.tar.gz
bitbake: toaster: Add clear filter button to filter tooltips
This patch modifies the basetable_top.html template to add the 'Show all' button to the applied filter tooltip. It also adds a delay in the tooltip dismissal in main.js to allow users to click the button comfortably. The patch does not add the functionality to the button (when you click on it nothing happens). Someone else will need to add that in. (Bitbake rev: e39857162b5d91cc2f92843a9a14599bab369849) Signed-off-by: Belen Barros <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/main.js b/bitbake/lib/toaster/toastergui/static/js/main.js
index 52e0084095..032584d4e2 100644
--- a/bitbake/lib/toaster/toastergui/static/js/main.js
+++ b/bitbake/lib/toaster/toastergui/static/js/main.js
@@ -20,7 +20,7 @@ $(document).ready(function() {
20 $('td > a.btn').popover({html:true, container:'body', placement:'left'}); 20 $('td > a.btn').popover({html:true, container:'body', placement:'left'});
21 21
22 // enable tooltips for applied filters 22 // enable tooltips for applied filters
23 $('th a.btn-primary').tooltip({container:'body', html:true, placement:'bottom'}); 23 $('th a.btn-primary').tooltip({container:'body', html:true, placement:'bottom', delay:{hide:1500}});
24 24
25 // enable help information tooltip 25 // enable help information tooltip
26 $(".get-help").tooltip({container:'body', html:true, delay:{show:300}}); 26 $(".get-help").tooltip({container:'body', html:true, delay:{show:300}});