Skip to content

Commit 9cc5a73

Browse files
committed
correct functiondoc
1 parent 3dec862 commit 9cc5a73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/web/waiters/InputWaiter.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1659,9 +1659,9 @@ class InputWaiter {
16591659
* If the events data has a `type` property set to `dataSubmit`
16601660
* the value property is set to the current input
16611661
* @param {event} e
1662-
* @param {object} inputData.data
1663-
* @param {string} inputData.data.type - the type of request, currently the only value is "dataSubmit"
1664-
* @param {string} inputData.data.value - the value of the message
1662+
* @param {object} e.data
1663+
* @param {string} e.data.type - the type of request, currently the only value is "dataSubmit"
1664+
* @param {string} e.data.value - the value of the message
16651665
*/
16661666
handlePostMessage(e) {
16671667
if ("data" in e && "type" in e.data && "value" in e.data) {

0 commit comments

Comments
 (0)