Reset caret position on clearInput, replaceInput

This commit is contained in:
Francisco Hodge
2019-04-15 10:40:26 -04:00
parent 72c9a75279
commit 2e20230cf7
2 changed files with 11 additions and 1 deletions
+10
View File
@@ -307,6 +307,11 @@ class SimpleKeyboard {
inputName = inputName || this.options.inputName;
this.input[inputName] = "";
/**
* Reset caretPosition
*/
this.caretPosition = 0;
/**
* Enforce syncInstanceInputs, if set
*/
@@ -349,6 +354,11 @@ class SimpleKeyboard {
*/
replaceInput(inputObj) {
this.input = inputObj;
/**
* Reset caretPosition
*/
this.caretPosition = null;
}
/**