diff --git a/blocked.html b/blocked.html
index c68d66e..231553d 100644
--- a/blocked.html
+++ b/blocked.html
@@ -1,6 +1,6 @@
-
+
@@ -25,13 +25,17 @@ The page you're trying to access has been blocked by
- (Block Set)
-
The page will be unblocked at: the end of time
+
+ (Block Set)
+ The page will be unblocked at: the end of time
-
+
diff --git a/blocked.js b/blocked.js
index 3b06254..305a37d 100644
--- a/blocked.js
+++ b/blocked.js
@@ -7,7 +7,7 @@
function processBlockInfo(info) {
if (!info) return;
- let blockedURL = document.getElementById("leechblockBlockedURL");
+ let blockedURL = document.getElementById("lbBlockedURL");
if (info.blockedURL && blockedURL) {
if (info.blockedURL.length > 60) {
blockedURL.innerText = info.blockedURL.substring(0, 57) + "...";
@@ -16,12 +16,12 @@ function processBlockInfo(info) {
}
}
- let blockedURLLink = document.getElementById("leechblockBlockedURLLink");
+ let blockedURLLink = document.getElementById("lbBlockedURLLink");
if (info.blockedURL && blockedURLLink) {
blockedURLLink.setAttribute("href", info.blockedURL);
}
- let blockedSet = document.getElementById("leechblockBlockedSet");
+ let blockedSet = document.getElementById("lbBlockedSet");
if (info.blockedSet && info.blockedSetName && blockedSet) {
if (info.blockedSetName) {
blockedSet.innerText = info.blockedSetName;
@@ -30,12 +30,12 @@ function processBlockInfo(info) {
}
}
- let unblockTime = document.getElementById("leechblockUnblockTime");
+ let unblockTime = document.getElementById("lbUnblockTime");
if (info.unblockTime && unblockTime) {
unblockTime.innerText = info.unblockTime;
}
- let delaySecs = document.getElementById("leechblockDelaySeconds");
+ let delaySecs = document.getElementById("lbDelaySeconds");
if (info.delaySecs && delaySecs) {
delaySecs.innerText = info.delaySecs;
@@ -58,7 +58,7 @@ function onCountdownTimer(countdown) {
window.clearInterval(countdown.interval);
// Strike through countdown text
- let countdownText = document.getElementById("leechblockCountdownText");
+ let countdownText = document.getElementById("lbCountdownText");
if (countdownText) {
countdownText.style.textDecoration = "line-through";
}
@@ -69,7 +69,7 @@ function onCountdownTimer(countdown) {
countdown.delaySecs--;
// Update countdown seconds on page
- let delaySecs = document.getElementById("leechblockDelaySeconds");
+ let delaySecs = document.getElementById("lbDelaySeconds");
if (delaySecs) {
delaySecs.innerText = countdown.delaySecs;
}
diff --git a/delayed.html b/delayed.html
index 9d64b5a..71d2a81 100644
--- a/delayed.html
+++ b/delayed.html
@@ -1,6 +1,6 @@
-
+
@@ -25,13 +25,17 @@ The page you're trying to access has been temporarily blocked by
- (Block Set)
-
The page will be loaded in 0 second(s).
+
+ (Block Set)
+ The page will be loaded in 0 second(s).
-
+