Skip to content

Commit 2526720

Browse files
committed
Fix KeyboardListener setter
1 parent bc660a0 commit 2526720

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/js/src/manager/screen/choiceset/KeyboardListener.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ class KeyboardListener {
104104
* @param {function} listener - A function to be invoked when the event occurs.
105105
* @returns {KeyboardListener} - A reference to this instance to allow method chaining.
106106
*/
107-
setOnKeyboardInputMaskHasChanged (listener) {
108-
this._onKeyboardInputMaskHasChanged = listener;
107+
setOnKeyboardDidUpdateInputMask (listener) {
108+
this._onKeyboardDidUpdateInputMask = listener;
109109
return this;
110110
}
111111

0 commit comments

Comments
 (0)