[gnome-continuous-yocto/gnomeostree-3.28-rocko: 1215/8267] bitbake: toaster: layerBtn avoid connecting handler to other build buttons



commit 5018d5f095ab4ab2ddd2ba164566d39d4578ce05
Author: Michael Wood <michael g wood intel com>
Date:   Mon Jul 4 16:34:45 2016 +0100

    bitbake: toaster: layerBtn avoid connecting handler to other build buttons
    
    Some pages contain other build buttons which may have the same class
    attached. Make sure that we only select the buttons in the tables where
    layerBtn is used.
    
    [YOCTO #9841]
    
    (Bitbake rev: ec083fd943c6996307beb3be3421403870d2f2b7)
    
    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>

 .../lib/toaster/toastergui/static/js/layerBtn.js   |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerBtn.js 
b/bitbake/lib/toaster/toastergui/static/js/layerBtn.js
index 259271d..9f9eda1 100644
--- a/bitbake/lib/toaster/toastergui/static/js/layerBtn.js
+++ b/bitbake/lib/toaster/toastergui/static/js/layerBtn.js
@@ -55,8 +55,8 @@ function layerBtnsInit() {
     });
   });
 
-  $(".build-recipe-btn").unbind('click');
-  $(".build-recipe-btn").click(function(e){
+  $("td .build-recipe-btn").unbind('click');
+  $("td .build-recipe-btn").click(function(e){
     e.preventDefault();
     var recipe = $(this).data('recipe-name');
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]