diff options
author | Stan Grishin <stangri@melmac.ca> | 2023-10-26 14:46:30 +0000 |
---|---|---|
committer | Stan Grishin <stangri@melmac.ca> | 2023-10-26 14:47:34 +0000 |
commit | dea2f135d7c915d46940e95a49891b945037be29 (patch) | |
tree | 163211f65dbd668bc9cb1ab244e60d60b0c82d0d /applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js | |
parent | 7f84135709fd2475360a8f96ad58b92107450480 (diff) |
luci-app-https-dns-proxy: add status->overview include file
* add status->overview include file
* sync version to principal package
* minor code formatting/styling fixes for js files
* improve HTTP/2 and HTTP/3 detection in RPCD script
Signed-off-by: Stan Grishin <stangri@melmac.ca>
Diffstat (limited to 'applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js')
-rw-r--r-- | applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js b/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js index bdc99fcbda..24efea0fce 100644 --- a/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js +++ b/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js @@ -2,6 +2,7 @@ // This code wouldn't have been possible without help from: // - [@stokito](https://github.com/stokito) // - [@vsviridov](https://github.com/vsviridov) +// noinspection JSAnnotator "require ui"; "require rpc"; @@ -241,7 +242,7 @@ var status = baseclass.extend({ }); name += " (" + option + ")"; } else { - if (match[1] != "") name += " (" + match[1] + ")"; + if (match[1] !== "") name += " (" + match[1] + ")"; } } } |