diff options
| author | Michael Wood <michael.g.wood@intel.com> | 2015-10-09 10:32:39 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-11 08:11:28 +0100 |
| commit | d6d680d2e525d07e4feb68522edbe761e4772165 (patch) | |
| tree | 94876866778ddb49556cc2e71c7ac91ece05413f | |
| parent | 7794b5728d923933d27f57f0f6829404da242198 (diff) | |
| download | poky-d6d680d2e525d07e4feb68522edbe761e4772165.tar.gz | |
bitbake: toaster: layerdetails update build recipe button class name
Update the class name which we are using for the recipe build button.
This fixes a regression in the buttons being enabled/disabled when
adding and removing the layer being viewed from the project.
(Bitbake rev: cc63f10f69105205e65b5f9647232b2b4b23ad48)
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>
| -rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/layerdetails.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js index 8817b47c6b..8c2ec4cdd9 100644 --- a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js +++ b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js | |||
| @@ -254,7 +254,7 @@ function layerDetailsPageInit (ctx) { | |||
| 254 | 254 | ||
| 255 | if (added){ | 255 | if (added){ |
| 256 | /* enable and switch all the button states */ | 256 | /* enable and switch all the button states */ |
| 257 | $(".build-target-btn").removeAttr("disabled"); | 257 | $(".build-recipe-btn").removeAttr("disabled"); |
| 258 | $(".select-machine-btn").removeAttr("disabled"); | 258 | $(".select-machine-btn").removeAttr("disabled"); |
| 259 | addRmLayerBtn.addClass("btn-danger"); | 259 | addRmLayerBtn.addClass("btn-danger"); |
| 260 | addRmLayerBtn.data('directive', "remove"); | 260 | addRmLayerBtn.data('directive', "remove"); |
| @@ -263,7 +263,7 @@ function layerDetailsPageInit (ctx) { | |||
| 263 | 263 | ||
| 264 | } else { | 264 | } else { |
| 265 | /* disable and switch all the button states */ | 265 | /* disable and switch all the button states */ |
| 266 | $(".build-target-btn").attr("disabled","disabled"); | 266 | $(".build-recipe-btn").attr("disabled","disabled"); |
| 267 | $(".select-machine-btn").attr("disabled", "disabled"); | 267 | $(".select-machine-btn").attr("disabled", "disabled"); |
| 268 | addRmLayerBtn.removeClass("btn-danger"); | 268 | addRmLayerBtn.removeClass("btn-danger"); |
| 269 | addRmLayerBtn.data('directive', "add"); | 269 | addRmLayerBtn.data('directive', "add"); |
