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:
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;
},
};