mirror of
https://github.com/discourse/discourse.git
synced 2026-08-09 04:28:29 -05:00
11 lines
326 B
JavaScript
11 lines
326 B
JavaScript
export function setTextareaSelection(textarea, selectionStart, selectionEnd) {
|
|||
|
|
textarea.selectionStart = selectionStart;
|
||
|
|
textarea.selectionEnd = selectionEnd;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function getTextareaSelection(textarea) {
|
||
|
|
const start = textarea.selectionStart;
|
||
|
|
const end = textarea.selectionEnd;
|
||
|
|
return [start, end - start];
|
||
|
|
}
|