* Make sure we are the last listener on the page so special * key event handlers (e.g for ) can come before us
()
| 280 | * key event handlers (e.g for <video>) can come before us |
| 281 | */ |
| 282 | function loaded() { |
| 283 | setTimeout(function () { |
| 284 | init(); |
| 285 | if (options.keyboardSupport) { |
| 286 | removeEvent("keydown", keydown); |
| 287 | addEvent("keydown", keydown); |
| 288 | } |
| 289 | }, 1); |
| 290 | } |
| 291 | const dateNow = (function () { |
| 292 | return window.performance && performance.now |
| 293 | ? function () { |
nothing calls this directly
no test coverage detected