Skillnad mellan versioner av "MediaWiki:Common.js"
Från Utforska Bibeln Nu
| Rad 1: | Rad 1: | ||
| − | |||
| − | |||
| − | |||
| − | |||
function getBibleGateway(script) { | function getBibleGateway(script) { | ||
$.ajax({ | $.ajax({ | ||
Nuvarande version från 11 maj 2017 kl. 18.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");