From a2ed8b8cf3745d4dea3f8f15cc28e395f852bbd6 Mon Sep 17 00:00:00 2001 From: Serge Pavlyuk Date: Mon, 26 Feb 2024 00:03:51 +0300 Subject: [PATCH] Cleanup console.log --- web/html/xui/xray.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/web/html/xui/xray.html b/web/html/xui/xray.html index 6bf1ed74..84704484 100644 --- a/web/html/xui/xray.html +++ b/web/html/xui/xray.html @@ -1368,7 +1368,6 @@ }); }, replaceRule(old_index,new_index){ - console.log(old_index, new_index); rules = this.templateSettings.routing.rules; if (new_index >= rules.length) rules.push(undefined); rules.splice(new_index, 0, rules.splice(old_index, 1)[0]); @@ -1379,9 +1378,6 @@ rules.splice(index,1); this.routingRuleSettings = JSON.stringify(rules); }, - onRuleDraggingStart(...args) { - console.log(args); - }, showWarp(){ warpModal.show(); }