summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/projectpage.js
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-10-13 09:58:49 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-13 15:35:49 +0300
commitd302c98822efe2cb78a63b620aed1b94b4ed4a68 (patch)
tree0e04f1b21ff5ad71fc73dbf62038094a8fb880ec /bitbake/lib/toaster/toastergui/static/js/projectpage.js
parent7e5464b45132977c3220cecc3ad8958bad9d5593 (diff)
downloadpoky-d302c98822efe2cb78a63b620aed1b94b4ed4a68.tar.gz
bitbake: toaster: Fix missing tooltips from layers on project configuration page
Re-enable the layer tooltips on the project configuration page. This adds the required fields to the API used for the layer dependencies to be able to show the metadata needed. Also fixes link hrefs which were missing in the add layers confirmation dialog (bug 8251). [YOCTO #8295] [YOCTO #8251] (Bitbake rev: c7cb8255d0ab1fd7715e878c1c83ef0cd920387e) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/js/projectpage.js')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/projectpage.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
index d36704751c..30989a016c 100644
--- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
+++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
@@ -146,10 +146,7 @@ function projectPageInit(ctx) {
146 146
147 link.attr("href", layerObj.layerdetailurl); 147 link.attr("href", layerObj.layerdetailurl);
148 link.text(layerObj.name); 148 link.text(layerObj.name);
149 /* YOCTO #8024 149 link.tooltip({title: layerObj.vcs_url + " | "+ layerObj.vcs_reference, placement: "right"});
150 link.tooltip({title: layerObj.giturl + " | "+ layerObj.branch.name, placement: "right"});
151 branch name not accessible sometimes it is revision instead
152 */
153 150
154 var trashItem = projectLayer.children("span"); 151 var trashItem = projectLayer.children("span");
155 trashItem.click(function (e) { 152 trashItem.click(function (e) {