mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-18 18:46:19 +08:00
c78d6b81c6
close: BS-2477
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
export const cleanSelection = () => {
|
|
const selection = window.getSelection();
|
|
if (selection) {
|
|
selection.removeAllRanges();
|
|
}
|
|
};
|