Skillnad mellan versioner av "MediaWiki:Common.js"
Från Utforska Bibeln Nu
(En mellanliggande version av samma användare visas inte) | |||
Rad 1: | Rad 1: | ||
− | + | function getBibleGateway(script) { | |
− | + | ||
− | + | ||
− | + | ||
− | function | + | |
$.ajax({ | $.ajax({ | ||
url: script, | url: script, | ||
Rad 18: | Rad 14: | ||
} | } | ||
− | + | getBibleGateway("https://www.biblegateway.com/public/link-to-us/tooltips/bglinks.js"); |
Nuvarande version från 11 maj 2017 kl. 17.34
function getBibleGateway(script) { $.ajax({ url: script, dataType: "script", async: false, // <-- This is the key success: function () { BGLinks.version = "CEB"; BGLinks.linkVerses(); }, error: function () { throw new Error("Could not load script " + script); } }); } getBibleGateway("https://www.biblegateway.com/public/link-to-us/tooltips/bglinks.js");