##// END OF EJS Templates
Focus the first text input or submit button when showing a modal box....
Jean-Philippe Lang -
r8753:0729ee143bc4
parent child
Show More
@@ -314,9 +314,10 function showModal(id, width) {
314 314 el.addClassName('modal');
315 315 el.show();
316 316
317 var submit = el.down("input[type=submit]");
318 if (submit) {
319 submit.focus();
317 if (el.down("input[type=text]")) {
318 el.down("input[type=text]").focus();
319 } else if (el.down("input[type=submit]")) {
320 el.down("input[type=submit]").focus();
320 321 }
321 322 }
322 323
General Comments 0
You need to be logged in to leave comments. Login now