summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-02-09 11:48:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-10 23:07:49 +0000
commitb2a903e1bae32889d5eef3af590489486e6acffc (patch)
tree75c639a9b6a9f6472ecd24bca6d433d915c1919b /bitbake/lib/toaster/toastergui/static
parent6877263f36a7ee16e3f3b895ab22206f7d976abc (diff)
downloadpoky-b2a903e1bae32889d5eef3af590489486e6acffc.tar.gz
bitbake: toastergui: add download task log icon to recipe details page
When a task fails, we keep the log and allow users to download it. Make sure the download is provided in the tasks table of the recipe details page. [YOCTO #7207] (Bitbake rev: 29837409a6cbabafe9e4d102e8143bab5ec22dc2) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Alexandru DAMIAN <alexandru.damian@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/libtoaster.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
index 04264cd8ba..2dc5b0a0a1 100644
--- a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
+++ b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
@@ -1,4 +1,3 @@
1
2/* All shared functionality to go in libtoaster object. 1/* All shared functionality to go in libtoaster object.
3 * This object really just helps readability since we can then have 2 * This object really just helps readability since we can then have
4 * a traceable namespace. 3 * a traceable namespace.
@@ -315,6 +314,9 @@ $(document).ready(function() {
315 // initialise the tooltips for the icon-pencil icons 314 // initialise the tooltips for the icon-pencil icons
316 $(".icon-pencil").tooltip({ container: 'body', html: true, delay: {show: 400}, title: "Change" }); 315 $(".icon-pencil").tooltip({ container: 'body', html: true, delay: {show: 400}, title: "Change" });
317 316
317 // initialise the tooltips for the download icons
318 $(".icon-download-alt").tooltip({ container: 'body', html: true, delay: { show: 200 } });
319
318 // linking directly to tabs 320 // linking directly to tabs
319 $(function(){ 321 $(function(){
320 var hash = window.location.hash; 322 var hash = window.location.hash;