summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-12-03 13:57:30 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-18 10:24:07 +0000
commitc058c373f605d4080ff655f0def33ac0ff13eff8 (patch)
tree094a390fe37ed3d8a5aeaf2ebcc8aef2d966d07a /bitbake
parent3910763db7285ced72a880e708642a35855ab0c4 (diff)
downloadpoky-c058c373f605d4080ff655f0def33ac0ff13eff8.tar.gz
bitbake: toaster: Initialise the 'change' icon tooltips
All 'change' icons should have a tooltip that appears when you hover over them. The tootlip says (fittingly): "Change". Initialise those icons in the libtoaster.js file so that they work outside the project page. (Bitbake rev: c635dd71670030da78c52545d2bb32b8c485c1af) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/libtoaster.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
index 8e76ecb85a..37fc80e39e 100644
--- a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
+++ b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
@@ -213,6 +213,9 @@ $(document).ready(function() {
213 // show task type and outcome in task details pages 213 // show task type and outcome in task details pages
214 $(".task-info").tooltip({ container: 'body', html: true, delay: {show: 200}, placement: 'right' }); 214 $(".task-info").tooltip({ container: 'body', html: true, delay: {show: 200}, placement: 'right' });
215 215
216 // initialise the tooltips for the icon-pencil icons
217 $(".icon-pencil").tooltip({ container: 'body', html: true, delay: {show: 400}, title: "Change" });
218
216 // linking directly to tabs 219 // linking directly to tabs
217 $(function(){ 220 $(function(){
218 var hash = window.location.hash; 221 var hash = window.location.hash;