Skillnad mellan versioner av "MediaWiki:Common.js"

Från Utforska Bibeln Nu
Hoppa till: navigering, sök
 
Rad 1: Rad 1:
/*
 
$("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) {
 
function getBibleGateway(script) {
 
     $.ajax({
 
     $.ajax({

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");