aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/pages/options/widgets/general.js11
-rw-r--r--src/pages/widgets/links.pug6
2 files changed, 14 insertions, 3 deletions
diff --git a/src/pages/options/widgets/general.js b/src/pages/options/widgets/general.js
index 5407159d..56439a95 100644
--- a/src/pages/options/widgets/general.js
+++ b/src/pages/options/widgets/general.js
@@ -156,6 +156,15 @@ protocolFallbackCheckbox.addEventListener("change", event => {
browser.storage.local.set({ protocolFallback: event.target.checked })
})
+let latencyOutput = document.getElementById("latency-output")
+let latencyInput = document.getElementById("latency-input")
+latencyInput.addEventListener("change", event => {
+ browser.storage.local.set({ latencyThreshold: event.target.value})
+})
+latencyInput.addEventListener("input", event => {
+ latencyOutput.value = event.target.value
+})
+
let nameCustomInstanceInput = document.getElementById("exceptions-custom-instance")
let instanceTypeElement = document.getElementById("exceptions-custom-instance-type")
let instanceType = "url"
@@ -181,6 +190,7 @@ browser.storage.local.get(
"exceptions",
"protocol",
"protocolFallback",
+ "latencyThreshold",
// 'firstPartyIsolate'
],
r => {
@@ -188,6 +198,7 @@ browser.storage.local.get(
themeElement.value = r.theme
protocolElement.value = r.protocol
protocolFallbackCheckbox.checked = r.protocolFallback
+ latencyOutput.value = r.latencyThreshold
// firstPartyIsolate.checked = r.firstPartyIsolate;
let protocolFallbackElement = document.getElementById("protocol-fallback")
diff --git a/src/pages/widgets/links.pug b/src/pages/widgets/links.pug
index cac2ecb3..c7f8e0a6 100644
--- a/src/pages/widgets/links.pug
+++ b/src/pages/widgets/links.pug
@@ -31,7 +31,7 @@ mixin links(service)
a(href="#reddit" data-localise="__MSG_reddit__") Reddit
.title
- img(src="../../../assets/images/imgur-icon.png")
+ img(src="../../../assets/images/imgur.png")
a(href="#imgur" data-localise="__MSG_imgur__") Imgur
.title
@@ -60,7 +60,7 @@ mixin links(service)
.title
img(src="../../../assets/images/lbry-icon.png")
- a(href="#lbry" data-localise="__MSG_lbry__") LBRY/Odysee
+ a(href="#lbry" data-localise="__MSG_lbry__") LBRY
.title
+search
@@ -80,4 +80,4 @@ mixin links(service)
.title
+about
- a(href="#about" data-localise="__MSG_about") About \ No newline at end of file
+ a(href="#about" data-localise="__MSG_about") About