mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 11:27:23 +02:00
Merge pull request #329 from SilverfishVR/master
fix api docs Window.prompt() example
This commit is contained in:
commit
7391405058
1 changed files with 2 additions and 2 deletions
|
@ -112,10 +112,10 @@ public slots:
|
|||
* @function Window.prompt
|
||||
* @param {string} message - The question to display.
|
||||
* @param {string} defaultText - The default answer text.
|
||||
* @returns {string} The text that the user entered if they select "OK", otherwise "".
|
||||
* @returns {string} The text that the user entered if they select "OK", otherwise null.
|
||||
* @example <caption>Ask the user a question requiring a text answer.</caption>
|
||||
* var answer = Window.prompt("Question", "answer");
|
||||
* if (answer === "") {
|
||||
* if (answer === null) {
|
||||
* print("User canceled");
|
||||
* } else {
|
||||
* print("User answer: " + answer);
|
||||
|
|
Loading…
Reference in a new issue