diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-05-04 14:20:24 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-05-04 14:20:24 +0300 |
| commit | e19061d513b8c4fb2207b4a553a96ea086089612 (patch) | |
| tree | 8a05450f0f6d3e8a2a182976b1a38bf5cca824ea /web/html/modals/text_modal.html | |
| parent | 51e2fb6dbfb6f3f21b3f578c15c3dc0d47c4a66e (diff) | |
TLS: Remove ECH Force Query
Diffstat (limited to 'web/html/modals/text_modal.html')
| -rw-r--r-- | web/html/modals/text_modal.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/modals/text_modal.html b/web/html/modals/text_modal.html index 38844e92..76a4b159 100644 --- a/web/html/modals/text_modal.html +++ b/web/html/modals/text_modal.html @@ -21,13 +21,13 @@ fileName: '', qrcode: null, visible: false, - show: function (title = '', content = '', fileName = '') { + show: function(title = '', content = '', fileName = '') { this.title = title; this.content = content; this.fileName = fileName; this.visible = true; }, - copy: function (content = '') { + copy: function(content = '') { ClipboardManager .copyText(content) .then(() => { @@ -35,7 +35,7 @@ this.close(); }) }, - close: function () { + close: function() { this.visible = false; }, }; |
