[oe-commits] [bitbake] 29/40: toaster: improve the display when local dir is added

git at git.openembedded.org git at git.openembedded.org
Wed Aug 10 23:12:12 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

commit c1961c7844cab5b9c9144f3b4946197097f53e17
Author: Sujith H <sujith.h at gmail.com>
AuthorDate: Tue Jul 19 07:57:09 2016 +0000

    toaster: improve the display when local dir is added
    
    The helper text gets displayed accordingly when mouse
    is hovered above the layers. If its a local directory
    then no more branch is mentioned. Only directory path
    is mentioned.
    
    [YOCTO #9911]
    
    Signed-off-by: Sujith H <sujith.h at gmail.com>
---
 lib/toaster/toastergui/static/js/projectpage.js | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/lib/toaster/toastergui/static/js/projectpage.js b/lib/toaster/toastergui/static/js/projectpage.js
index df79849..b75b3e1 100644
--- a/lib/toaster/toastergui/static/js/projectpage.js
+++ b/lib/toaster/toastergui/static/js/projectpage.js
@@ -172,7 +172,12 @@ function projectPageInit(ctx) {
 
       link.attr("href", layerObj.layerdetailurl);
       link.text(layerObj.name);
-      link.tooltip({title: layerObj.vcs_url + " | "+ layerObj.vcs_reference, placement: "right"});
+
+      if (layerObj.local_source_dir) {
+        link.tooltip({title: layerObj.local_source_dir, placement: "right"});
+      } else {
+        link.tooltip({title: layerObj.vcs_url + " | "+ layerObj.vcs_reference, placement: "right"});
+      }
 
       var trashItem = projectLayer.children("span");
       trashItem.click(function (e) {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list