Skip to content

Commit 11f61ce

Browse files
authoredJan 23, 2023
whisper.wasm : add labels for easier radio selection (ggerganov#435)
1 parent b5ddb16 commit 11f61ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎examples/whisper.wasm/index-tmpl.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
<!-- radio button to select between file upload or microphone -->
6363
<div id="input">
6464
Input:
65-
<input type="radio" id="file" name="input" value="file" checked="checked" onchange="changeInput('file')" /> File
66-
<input type="radio" id="mic" name="input" value="mic" onchange="changeInput('mic')" /> Microphone
65+
<input type="radio" id="file" name="input" value="file" checked="checked" onchange="changeInput('file')" /> <label for="file">File</label>
66+
<input type="radio" id="mic" name="input" value="mic" onchange="changeInput('mic')" /> <label for="mic">Microphone</label>
6767
</div>
6868

6969
<br>

0 commit comments

Comments
 (0)
Please sign in to comment.