Skip to content

Commit

Permalink
Added input param to keysEnterCallback
Browse files Browse the repository at this point in the history
  • Loading branch information
dnapierata committed Oct 25, 2022
1 parent c2b426d commit 461eae6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/kioskboard-aio.js
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@
removeKeyboard();
}
if (typeof opt.keysEnterCallback === 'function') {
opt.keysEnterCallback();
opt.keysEnterCallback(input);
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion dist/kioskboard-2.3.0.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/kioskboard-aio-2.3.0.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/kioskboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@
removeKeyboard();
}
if (typeof opt.keysEnterCallback === 'function') {
opt.keysEnterCallback();
opt.keysEnterCallback(input);
}
});
}
Expand Down

0 comments on commit 461eae6

Please sign in to comment.