Fix typo in 2.99.2 (Selection and Range)

This commit is contained in:
Vse Mozhe Buty 2020-11-23 19:07:20 +02:00
parent 3cb134f29f
commit b7a7e687a4

View file

@ -494,7 +494,7 @@ Focus on me, the cursor will be at position 10.
// zero delay setTimeout to run after browser "focus" action finishes
setTimeout(() => {
// we can set any selection
// if start=end, the cursor it exactly at that place
// if start=end, the cursor is exactly at that place
area.selectionStart = area.selectionEnd = 10;
});
};