function clearSelectionsInWindow()

in src/overlay/gather-markers.ts [72:78]


function clearSelectionsInWindow() {
  if (window && window.getSelection) {
    window.getSelection().removeAllRanges();
  } else if (document.hasOwnProperty("selection")) {
    (document as any).selection.empty();
  }
}