Marian Ban
Marian Ban
Quick fix for this issue: setInputValue: function setInputValue(value, silent) { if (!silent) { var selectionStart = this.$input[0].selectionStart; var selectionEnd = this.$input[0].selectionEnd; } this.$input.val(value); if (!silent) { this.$input[0].setSelectionRange(selectionStart, selectionEnd); } silent...
Yes, to the text cursor.
Please add this. This will realy help with debuging tricky request race condition issues especially with passed through responses.