mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-25 15:18:37 -06:00
fix: Disable copying to clipboard on WebKit, fixes #36
This disables clipboard copying and lets the user manually copy the links.
This commit is contained in:
parent
66d94634d9
commit
37a5300015
1 changed files with 4 additions and 1 deletions
|
@ -103,7 +103,10 @@ const TR = (row, site) => {
|
||||||
const tr = document.createElement("tr");
|
const tr = document.createElement("tr");
|
||||||
const longTD = TD(A_LONG(row["longlink"]), "Long URL");
|
const longTD = TD(A_LONG(row["longlink"]), "Long URL");
|
||||||
var shortTD = null;
|
var shortTD = null;
|
||||||
if (window.isSecureContext) {
|
var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
|
||||||
|
// For now, we disable copying on WebKit due to a possible bug. Manual copying is enabled instead.
|
||||||
|
// Take a look at https://github.com/SinTan1729/chhoto-url/issues/36
|
||||||
|
if (window.isSecureContext && !(isSafari)) {
|
||||||
shortTD = TD(A_SHORT(row["shortlink"], site), "Short URL");
|
shortTD = TD(A_SHORT(row["shortlink"], site), "Short URL");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue