This commit is contained in:
Zack Rauen 2017-10-29 16:55:59 -04:00
parent 7133d14883
commit 15b03efe6d
1 changed files with 1 additions and 0 deletions

View File

@ -2377,6 +2377,7 @@ Utils.prototype.getTextArea = function () {
};
Utils.prototype.insertText = function (textarea, text) {
textarea.focus();
textarea.selectionStart = 0;
textarea.selectionEnd = textarea.value.length;
document.execCommand("insertText", false, text);