Skip to content

Commit

Permalink
Merge pull request #2078 from IgniteUI/PMiteva/fix-bug-2076-v20.1
Browse files Browse the repository at this point in the history
browserDefault selectionOnFocus should preserve caret…
  • Loading branch information
Lipata authored Jun 26, 2020
2 parents b1ff57b + b5897b0 commit fe7d885
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 fe7d885

Please sign in to comment.