mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:09:35 +08: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];
|
|
}
|