This commit is contained in:
MHSanaei 2024-02-23 17:40:27 +03:30
parent a39d07a68a
commit 034bc5e228
3 changed files with 4 additions and 4 deletions

View file

@ -25,10 +25,10 @@ bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.
## Install Custom Version
To install your desired version, add the version to the end of the installation command. e.g., ver `v2.1.3`:
To install your desired version, add the version to the end of the installation command. e.g., ver `v2.2.0`:
```
bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.1.3
bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh) v2.2.0
```
## SSL Certificate

View file

@ -1 +1 @@
2.1.3
2.2.0

View file

@ -538,7 +538,7 @@
var on = function(emitter, type, f) {
if (emitter.addEventListener) {
emitter.addEventListener(type, f, false);
emitter.addEventListener(type, f, { passive: true });
} else if (emitter.attachEvent) {
emitter.attachEvent("on" + type, f);
} else {