From 8b859019a61484a31aa3d3cde96f9fe85b3c95af Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Sun, 7 Jan 2024 19:20:21 +0100 Subject: Use read.andbible.org URLs for displaying Bible verses in AndBible. Partially fixes: gb#52572e2 (aka https://todo.sr.ht/~mcepl/devel/22) --- hesla.ts | 21 ++++++++++++++++++--- sworker.js | 2 +- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/hesla.ts b/hesla.ts index 473f194..f7b8711 100644 --- a/hesla.ts +++ b/hesla.ts @@ -1,3 +1,5 @@ +/// + import {ActivePage} from "./activePage.js"; function toISODateString(date) { @@ -97,9 +99,22 @@ export class Hesla extends ActivePage { super.display(); console.log("cur_watchword = " + toISODateString(this.cur_watchword)); - document.getElementById(toISODateString(this.cur_watchword)). - classList.add("visible"); - + 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); + }); + } window.scroll(0, 0); } diff --git a/sworker.js b/sworker.js index ba850c0..f99d14d 100644 --- a/sworker.js +++ b/sworker.js @@ -1,4 +1,4 @@ -var VERSION = 'v62 - 2023-12-31'; +var VERSION = 'v63 - 2024-01-07'; var toCache = [ '/', 'activePage.js', -- cgit