()
| 263 | } |
| 264 | |
| 265 | function initClipboardEvent() { |
| 266 | ;['copy', 'cut', 'paste'].forEach((verb) => { |
| 267 | document.documentElement.addEventListener(verb, () => { |
| 268 | sendEvent({ type: EventType.clipboard, clipboard_operation: verb }) |
| 269 | }) |
| 270 | }) |
| 271 | } |
| 272 | |
| 273 | function initCopyButtonEvent() { |
| 274 | document.documentElement.addEventListener('click', (evt) => { |
no test coverage detected