##// END OF EJS Templates
Don't focus first input when URL contains a hash (#17757)....
Jean-Philippe Lang -
r14014:ec1937479ffa
parent child
Show More
@@ -627,7 +627,7 function addFormObserversForDoubleSubmit() {
627 }
627 }
628
628
629 function defaultFocus(){
629 function defaultFocus(){
630 if ($('#content :focus').length == 0) {
630 if (($('#content :focus').length == 0) && (window.location.hash == '')) {
631 $('#content input[type=text], #content textarea').first().focus();
631 $('#content input[type=text], #content textarea').first().focus();
632 }
632 }
633 }
633 }
General Comments 0
You need to be logged in to leave comments. Login now