Skip to content

Commit

Permalink
Fix tabindex and remoe "max"
Browse files Browse the repository at this point in the history
  • Loading branch information
lamrongol committed Sep 20, 2024
1 parent 2009a41 commit 54a1ba3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1>【非公式】学マス パラメータ計算機</h1>
<strong>マスター</strong>
</p>
レッスン上限上昇量:
<input type="number" name="primary" id="lesson_limit_up" placeholder="000" required min="0" step="5" tabindex="0" />
<input type="number" name="primary" id="lesson_limit_up" placeholder="000" required min="0" step="5" tabindex="1" />
<hr>
<form name="mainForm">
<p id="debug"></p>
Expand All @@ -51,25 +51,25 @@ <h1>【非公式】学マス パラメータ計算機</h1>
<tr>
<th scope="row">パラメータ</th>
<td><input type="number" name="primary" id="primary_vocal" placeholder="0000" required min="1"
max="1500" tabindex="1" />
tabindex="2" />
</td>
<td><input type="number" name="primary" id="primary_dance" placeholder="0000" required min="1"
max="1500" tabindex="2" />
tabindex="3" />
</td>
<td><input type="number" name="primary" id="primary_visual" placeholder="0000" required min="1"
max="1500" tabindex="3" /> ...
tabindex="4" /> ...
</td>
</tr>
<tr>
<th scope="row">レッスンボーナス</th>
<td><input type="number" name="primary" id="vocal_bonus" placeholder="00.0" required step="0.1"
min="0.1" tabindex="4" /> %
min="0.1" tabindex="5" /> %
</td>
<td><input type="number" name="primary" id="dance_bonus" placeholder="00.0" required step="0.1"
min="0.1" tabindex="5" /> %
min="0.1" tabindex="6" /> %
</td>
<td><input type="number" name="primary" id="visual_bonus" placeholder="00.0" required step="0.1"
min="0.1" tabindex="6" /> %
min="0.1" tabindex="7" /> %
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 54a1ba3

Please sign in to comment.