Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2026-05-04 14:20:24 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2026-05-04 14:20:24 +0300
commite19061d513b8c4fb2207b4a553a96ea086089612 (patch)
tree8a05450f0f6d3e8a2a182976b1a38bf5cca824ea /web/html/modals/text_modal.html
parent51e2fb6dbfb6f3f21b3f578c15c3dc0d47c4a66e (diff)
TLS: Remove ECH Force Query
Diffstat (limited to 'web/html/modals/text_modal.html')
-rw-r--r--web/html/modals/text_modal.html6
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;
},
};