Skip to content

Commit

Permalink
fix(textEditor) browserDefault selectionOnFocus should preserve caret…
Browse files Browse the repository at this point in the history
… position when blurred #2076
  • Loading branch information
PlamenaMiteva committed Jun 25, 2020
1 parent b1ff57b commit b5897b0
Show file tree
Hide file tree
Showing 2 changed files with 158 additions and 125 deletions.
3 changes: 2 additions & 1 deletion src/js/modules/infragistics.ui.editors.js
Original file line number Diff line number Diff line change
Expand Up @@ -3689,7 +3689,8 @@
}
break;
case "browserDefault": {
if (startPosition) {
//P.M. 25/06/2020 #2076 'igTextEditor selects all the text when the browser window gets focused again'
if (startPosition >= 0) {
if (endPosition) {

//I.G. 03/04/2020 #2056 'Caret position is placed one character before the last one, when the right side of the last character is clicked'
Expand Down
Loading

0 comments on commit b5897b0

Please sign in to comment.