Procházet zdrojové kódy

Add textarea to list of possible focus candidates

pdontthink před 16 roky
rodič
revize
7525bfeb68
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      templates/default/js/default.js

+ 1 - 1
templates/default/js/default.js

@@ -271,7 +271,7 @@ function checkForm(smaction) {
             var e = document.forms[i].elements.length;
             var j = 0;
             while( pos == -1 && j < e ) {
-                if ( document.forms[i].elements[j].type == 'text' || document.forms[i].elements[j].type == 'password' ) {
+                if ( document.forms[i].elements[j].type == 'text' || document.forms[i].elements[j].type == 'password' || document.forms[i].elements[j].type == 'textarea' ) {
                     pos = j;
                 }
                 j++;