fix api docs Window.prompt() example

example did not work as expected
This commit is contained in:
SilverfishVR 2023-02-17 03:25:57 +01:00
parent e17c9c401d
commit ec25cfd60a

View file

@ -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);