summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/importlayer.js
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/js/importlayer.js')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/importlayer.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/importlayer.js b/bitbake/lib/toaster/toastergui/static/js/importlayer.js
index d6e140ffdc..e782bda120 100644
--- a/bitbake/lib/toaster/toastergui/static/js/importlayer.js
+++ b/bitbake/lib/toaster/toastergui/static/js/importlayer.js
@@ -245,15 +245,15 @@ function importLayerPageInit (ctx) {
245 enable_import_btn(true); 245 enable_import_btn(true);
246 } 246 }
247 247
248 vcsURLInput.keyup(function() { 248 vcsURLInput.on('input', function() {
249 check_form(); 249 check_form();
250 }); 250 });
251 251
252 gitRefInput.keyup(function() { 252 gitRefInput.on('input', function() {
253 check_form(); 253 check_form();
254 }); 254 });
255 255
256 layerNameInput.keyup(function() { 256 layerNameInput.on('input', function() {
257 if ($(this).val() && !validLayerName.test($(this).val())){ 257 if ($(this).val() && !validLayerName.test($(this).val())){
258 layerNameCtrl.addClass("error") 258 layerNameCtrl.addClass("error")
259 $("#invalid-layer-name-hint").show(); 259 $("#invalid-layer-name-hint").show();