Skip to content

Commit

Permalink
Set tabindex on form inputs
Browse files Browse the repository at this point in the history
- Fixes #7
  • Loading branch information
hharnisc committed Dec 30, 2016
1 parent e144f0a commit 82ef6af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ <h2 class="header">Saved Tab Groups</h2>
<div class="list"></div>
<div class="controls">
<form class="form-controls">
<input type="text" id="tab-group-new-name" value="" placeholder="New Tab Group Name" required>
<button class="tab-group-save primary">Save All Tabs</button>
<button class="tab-group-save-close">Save &amp; Close All Tabs</button>
<label><input type="checkbox" id="save-only-selected" class="tab-group-save-cb"> Only Save Selected Tabs</label>
<input type="text" id="tab-group-new-name" value="" placeholder="New Tab Group Name" tabindex=1 required>
<button class="tab-group-save primary" tabindex=2 >Save All Tabs</button>
<button class="tab-group-save-close" tabindex=3 >Save &amp; Close All Tabs</button>
<label><input type="checkbox" id="save-only-selected" class="tab-group-save-cb" tabindex=4> Only Save Selected Tabs</label>
</form>
</div>
</div>
Expand Down

0 comments on commit 82ef6af

Please sign in to comment.