Skillnad mellan versioner av "MediaWiki:Common.js"
Från Utforska Bibeln Nu
Rad 3: | Rad 3: | ||
*/ | */ | ||
− | function | + | function getBibleGateway(script) { |
$.ajax({ | $.ajax({ | ||
url: script, | url: script, | ||
Rad 18: | Rad 18: | ||
} | } | ||
− | + | getBibleGateway("https://www.biblegateway.com/public/link-to-us/tooltips/bglinks.js"); |
Versionen från 11 maj 2017 kl. 17.32
/* $("head").append('<script src="https://www.biblegateway.com/public/link-to-us/tooltips/bglinks.js" type="text/javascript"></script><script >BGLinks.version = "CEB"; BGLinks.linkVerses();</script>'); */ 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");