From c09f366c7f22d666c9f535b6b321c809b636868a Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Mon, 15 Apr 2024 00:38:37 +0200 Subject: Partially revert 8b85901 Unfortunately read.andbible.org API is currently broken (gh#AndBible/and-bible#3210), so we have to revert back to https://www.crosswire.org/study/. --- hesla.ts | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) (limited to 'hesla.ts') diff --git a/hesla.ts b/hesla.ts index f7b8711..aee251a 100644 --- a/hesla.ts +++ b/hesla.ts @@ -99,22 +99,9 @@ export class Hesla extends ActivePage { super.display(); console.log("cur_watchword = " + toISODateString(this.cur_watchword)); - var disp_watchword = document.getElementById(toISODateString(this.cur_watchword)); - disp_watchword.classList.add("visible"); - - // Complete mobile device identification /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/ - if (/Android/i.test(navigator.userAgent)) { - // true for mobile device - var href_attr = ""; - Array.prototype.forEach.call(disp_watchword.getElementsByTagName("a"), a_elem => { - href_attr = a_elem.getAttribute("href"); - console.log("before replacement: href_attr = " + href_attr); - href_attr = href_attr.replace(/http:\/\/www\.crosswire\.org\/study\/passagestudy\.jsp\?key=([^&]+)&mod=([a-zA-Z]+)/, - "https://read.andbible.org/$1?v11n=$2"); - console.log("after replacement: href_attr = " + href_attr); - a_elem.setAttribute("href", href_attr); - }); - } + document.getElementById(toISODateString(this.cur_watchword)). + classList.add("visible"); + window.scroll(0, 0); } -- cgit