Simpler comparison
Co-authored-by: missionfloyd <missionfloyd@users.noreply.github.com>
This commit is contained in:
parent
766f6e3eca
commit
5ab5405b6f
|
@ -65,10 +65,10 @@ function keyupEditAttention(event) {
|
|||
}
|
||||
|
||||
// deselect surrounding whitespace
|
||||
while (target.value.slice(selectionStart, selectionStart + 1) == " " && selectionStart < selectionEnd) {
|
||||
while (text[selectionStart] == " " && selectionStart < selectionEnd) {
|
||||
selectionStart++;
|
||||
}
|
||||
while (target.value.slice(selectionEnd - 1, selectionEnd) == " " && selectionEnd > selectionStart) {
|
||||
while (text[selectionEnd - 1] == " " && selectionEnd > selectionStart) {
|
||||
selectionEnd--;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue