diff --git a/mitmproxy/addons/onboardingapp/templates/index.html b/mitmproxy/addons/onboardingapp/templates/index.html index 8487a3cb8..98fcd32d0 100644 --- a/mitmproxy/addons/onboardingapp/templates/index.html +++ b/mitmproxy/addons/onboardingapp/templates/index.html @@ -6,7 +6,6 @@ function changeTo(device) { if (device == "apple") { var text = `

Apple: How to install on macOS / OSX

`; } else if (device == "windows") { - var text = `

Windows: How to install

`; + var text = `

Windows: How to install on Windows

+ `; } else if (device == "android") { - var text = `

Android: How to install

`; + var text = `

Android: How to install on Android

+ `; } else if (device == "asterisk") { - var text = `

others

`; + var text = ""; } document.getElementById("dynamic").innerHTML = text; }