mirror of https://github.com/CIRCL/lookyloo
chg: Copy pandora link into clipboard
parent
c42de0565c
commit
2be8a4e4ff
|
@ -69,7 +69,10 @@
|
||||||
})
|
})
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
openURLInNewTab(data.link)
|
if (navigator.clipboard && window.isSecureContext) {
|
||||||
|
navigator.clipboard.writeText(data.link);
|
||||||
|
}
|
||||||
|
openURLInNewTab(data.link);
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
throw new Error(error);
|
throw new Error(error);
|
||||||
|
|
Loading…
Reference in New Issue