UNPKG

@pageworks/pjax

Version:

Turns any website into a SPA using Fetch and link prefetching.

13 lines 282 B
/** * Attempt to clear the active element. */ export default ()=>{ if(document.activeElement){ try{ // Attempt to blur the element (document.activeElement as HTMLElement).blur(); }catch(e){ console.log(e); } } }