Merge pull request #329 from SilverfishVR/master

fix api docs Window.prompt() example
This commit is contained in:
Dale Glass 2023-02-18 21:10:45 +01:00 committed by GitHub
commit 7391405058
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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