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
path: root/web/html
diff options
context:
space:
mode:
authorHo3ein <ho3ein.sanaei@gmail.com>2023-12-10 17:40:07 +0300
committerGitHub <noreply@github.com>2023-12-10 17:40:07 +0300
commit9fbe80f87f950673058f0001b3704251fa8b9243 (patch)
treeb11d0c1ed3c15c8f6f891a5e6df8e021d5db8ab6 /web/html
parent0f05537a5d3016d9fd574fb9a99c69952d243a10 (diff)
parent36cf7c0a8fda915b51e75958ce729fd9a61a5c90 (diff)
Merge branch 'main' into dev
Diffstat (limited to 'web/html')
-rw-r--r--web/html/xui/settings.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/web/html/xui/settings.html b/web/html/xui/settings.html
index 33ed36bf..a5460a0b 100644
--- a/web/html/xui/settings.html
+++ b/web/html/xui/settings.html
@@ -308,31 +308,6 @@
saveBtnDisable: true,
user: {},
lang: getLang(),
- showAlert: false,
- remarkModels: {i:'Inbound',e:'Email',o:'Other'},
- remarkSeparators: [' ','-','_','@',':','~','|',',','.','/'],
- remarkSample: '',
- get remarkModel() {
- rm = this.allSetting.remarkModel;
- return rm.length>1 ? rm.substring(1).split('') : [];
- },
- set remarkModel(value) {
- rs = this.allSetting.remarkModel[0];
- this.allSetting.remarkModel = rs + value.join('');
- this.changeRemarkSample();
- },
- get remarkSeparator() {
- return this.allSetting.remarkModel.length > 1 ? this.allSetting.remarkModel.charAt(0) : '-';
- },
- set remarkSeparator(value) {
- this.allSetting.remarkModel = value + this.allSetting.remarkModel.substring(1);
- this.changeRemarkSample();
- },
- changeRemarkSample(){
- sample = []
- this.remarkModel.forEach(r => sample.push(this.remarkModels[r]));
- this.remarkSample = sample.length == 0 ? '' : sample.join(this.remarkSeparator);
- }
},
methods: {
loading(spinning = true) {