We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b31c9a0 + 1f42397 commit 5e926f1Copy full SHA for 5e926f1
1 file changed
radicale/web/internal_data/js/utils/url_text.js
@@ -63,7 +63,11 @@ export class UrlTextHandler {
63
});
64
65
if (this._copyButton) {
66
- this._copyButton.onclick = () => this._oncopy();
+ if (typeof window !== "undefined" && !window.isSecureContext) {
67
+ this._copyButton.classList.add("hidden");
68
+ } else {
69
+ this._copyButton.onclick = () => this._oncopy();
70
+ }
71
}
72
73
0 commit comments