UNPKG
@highloop/feedback
Version:
latest (0.0.0-beta.10)
0.0.0-beta.10
0.0.0-beta.8
0.0.0-beta.6
0.0.0-beta.5
0.0.0-beta.1
0.0.0-beta
@highloop/feedback
/
src
/
prefetch.ts
7 lines
(6 loc)
•
216 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
let
prefetch
= (
id
:
string
) => {
let
link =
document
.
createElement
(
'link'
); link.
rel
=
'prefetch'
; link.
href
=
`https://widget.onhighloop.com/feedback/
${id}
`
;
document
.
head
.
appendChild
(link); };