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:
authorAlireza Ahmadi <alireza7@gmail.com>2023-12-08 22:31:17 +0300
committerAlireza Ahmadi <alireza7@gmail.com>2023-12-08 22:31:17 +0300
commitc980a06969c9595f0b0b7d5db301f2413506eb6f (patch)
treec5e3cca1eeda78e613134034e02ea78b82a0d52e /web/html/xui/inbounds.html
parent35feef650f793ffbec2af51a18fd25d8b0beefb1 (diff)
customizable remark #1300
Diffstat (limited to 'web/html/xui/inbounds.html')
-rw-r--r--web/html/xui/inbounds.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/html/xui/inbounds.html b/web/html/xui/inbounds.html
index 31595f00..14371631 100644
--- a/web/html/xui/inbounds.html
+++ b/web/html/xui/inbounds.html
@@ -556,6 +556,7 @@
enable : false,
subURI : ''
},
+ remarkModel: '-ieo',
tgBotEnable: false,
pageSize: 0,
isMobile: window.innerWidth <= 768,
@@ -600,6 +601,7 @@
subURI: subURI
};
this.pageSize = pageSize;
+ this.remarkModel = remarkModel;
}
},
setInbounds(dbInbounds) {
@@ -1191,7 +1193,7 @@
exportAllLinks() {
let copyText = [];
for (const dbInbound of this.dbInbounds) {
- copyText.push(dbInbound.genInboundLinks);
+ copyText.push(dbInbound.genInboundLinks(this.remarkModel));
}
txtModal.show('{{ i18n "pages.inbounds.export"}}', copyText.join('\r\n'), 'All-Inbounds');
},