Explorar el Código

BugFix: focus to .page-today-input2 when create-page modal is opened

Yuki Takei hace 8 años
padre
commit
2521367875
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      resource/js/legacy/crowi.js

+ 3 - 0
resource/js/legacy/crowi.js

@@ -205,6 +205,9 @@ $(function() {
     var dateString = today.getFullYear() + '/' + month + '/' + day;
     $('#create-page-today .page-today-suffix').text('/' + dateString + '/');
     $('#create-page-today .page-today-input2').data('prefix', '/' + dateString + '/');
+
+    // focus
+    $('#create-page-today .page-today-input2').eq(0).focus();
   });
 
   $('#create-page-today').submit(function(e) {