Skip to content

Commit

Permalink
whisper.wasm : add labels for easier radio selection (ggerganov#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
kokes authored Jan 23, 2023
1 parent b5ddb16 commit 11f61ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/whisper.wasm/index-tmpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
<!-- radio button to select between file upload or microphone -->
<div id="input">
Input:
<input type="radio" id="file" name="input" value="file" checked="checked" onchange="changeInput('file')" /> File
<input type="radio" id="mic" name="input" value="mic" onchange="changeInput('mic')" /> Microphone
<input type="radio" id="file" name="input" value="file" checked="checked" onchange="changeInput('file')" /> <label for="file">File</label>
<input type="radio" id="mic" name="input" value="mic" onchange="changeInput('mic')" /> <label for="mic">Microphone</label>
</div>

<br>
Expand Down

0 comments on commit 11f61ce

Please sign in to comment.