web_ppt / frontend /src /utils /selection.ts
CatPtain's picture
Upload 339 files
89ce340 verified
raw
history blame
147 Bytes
// 清除文字选区
export const removeAllRanges = () => {
const selection = window.getSelection()
selection && selection.removeAllRanges()
}