address erroneous text issue #113

This commit is contained in:
idk
2021-12-02 19:50:33 -05:00
parent 4d317eac4c
commit 73f2883fbd
2 changed files with 7 additions and 2 deletions

View File

@@ -12,7 +12,6 @@ function contentUpdateById(id, message) {
contentUpdateById("text-section-header", "extensionName");
contentUpdateById("description", "extensionDescription");
contentUpdateById("i2pbrowser-version", "extensionVersion");
contentUpdateById("proxy-check", "proxyFailedStatus");
// Control Section
contentUpdateById("controlHeader", "controlHeader");
@@ -54,6 +53,12 @@ fetch("http://proxy.i2p").then((myJson) => {
if (readyness != null) {
hide(readyness);
}
}, (error) => {
contentUpdateById("proxy-check", "proxyFailedStatus");
let readyness = document.querySelectorAll(".readyness");
if (readyness != null) {
hide(readyness);
}
});
function hide(elements) {

View File

@@ -27,7 +27,7 @@
],
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "0.123",
"version": "0.125",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/eyedeekay/I2P-in-Private-Browsing-Mode-Firefox",
"icons": {