Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions jquery-turtle.js
Original file line number Diff line number Diff line change
Expand Up @@ -8046,9 +8046,9 @@ var dollar_turtle_methods = {
"converts input to a number: " +
"<mark>readstr 'Enter code', (v) -> write v.length + ' long'</mark>"],
doOutput, function readstr(a, b) { return prepareInput(a, b, 'text'); }),
readvoice: wrapglobalcommand('readvoice',
["<u>readvoice(html, fn)</u> Reads voice input, if the browser supports it:" +
"<mark>readvoice 'Say something', (v) -> write v</mark>"],
listen: wrapglobalcommand('listen',
["<u>listen(html, fn)</u> Reads voice input, if the browser supports it:" +
"<mark>listen 'Say something', (v) -> write v</mark>"],
doOutput, function readstr(a, b) { return prepareInput(a, b, 'voice'); }),
menu: wrapglobalcommand('menu',
["<u>menu(map)</u> shows a menu of choices and calls a function " +
Expand Down
2 changes: 1 addition & 1 deletion test/globals.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"typeline",
"read",
"readnum",
"readvoice",
"listen",
"readstr",
"menu",
"random",
Expand Down