summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/js/layerdetails.js')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/layerdetails.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
index 99552de8c1..2e713d5a0f 100644
--- a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
+++ b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
@@ -353,7 +353,7 @@ function layerDetailsPageInit (ctx) {
353 }); 353 });
354 354
355 /* Disable the change button when we have no data in the input */ 355 /* Disable the change button when we have no data in the input */
356 $("dl input, dl textarea").keyup(function() { 356 $("dl input, dl textarea").on("input",function() {
357 if ($(this).val().length == 0) 357 if ($(this).val().length == 0)
358 $(this).parent().children(".change-btn").attr("disabled", "disabled"); 358 $(this).parent().children(".change-btn").attr("disabled", "disabled");
359 else 359 else