MediaWiki:BibleGet.js: Difference between revisions
Content deleted Content added
Johnrdorazio (talk | contribs) No edit summary |
Johnrdorazio (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
(function($){ |
(function($){ |
||
$(document).ready(function(){ |
$(document).ready(function(){ |
||
if( $('. |
if( $('.bibleQuoteRef').length > 0 ){ |
||
console.log("There are bible quotes on this page!"); |
console.log("There are bible quotes on this page!"); |
||
$('. |
$('.bibleQuoteRef').each(function(){ |
||
let version = $(this).attr('data-version'); |
let version = $(this).attr('data-version'); |
||
let ref = $(this).attr('data-ref'); |
let ref = $(this).attr('data-ref'); |
||
let $ |
let $span = $(this); |
||
$.ajax({ |
$.ajax({ |
||
method: 'POST', |
method: 'POST', |
||
Line 17: | Line 17: | ||
}, |
}, |
||
success: function(data){ |
success: function(data){ |
||
let $bGetTIP = $('<div>', { |
|||
⚫ | |||
"class": "bibleGetQuote", |
|||
"data-ref": ref, |
|||
⚫ | |||
}); |
|||
$(body).append($bGetTIP); |
|||
$span.on('mouseenter', function(){ |
|||
$bGetTIP.show(); |
|||
let top = $span.offset().top; |
|||
let left = $span.offset().left + $span.outerWidth(); |
|||
$bGetTIP.css({"top":top,"left":left}); |
|||
}); |
|||
console.log("Injected Bible quote for ref = " + ref + " with value obtained from BibleGet service:"); |
console.log("Injected Bible quote for ref = " + ref + " with value obtained from BibleGet service:"); |
||
console.log(data); |
console.log(data); |
Revision as of 00:11, September 5, 2020
(function($){
$(document).ready(function(){
if( $('.bibleQuoteRef').length > 0 ){
console.log("There are bible quotes on this page!");
$('.bibleQuoteRef').each(function(){
let version = $(this).attr('data-version');
let ref = $(this).attr('data-ref');
let $span = $(this);
$.ajax({
method: 'POST',
url: 'https://query.bibleget.io/',
data: {
"version": version,
"query": ref,
"appid": 'SeminaVerbi',
"return": 'html'
},
success: function(data){
let $bGetTIP = $('<div>', {
"class": "bibleGetQuote",
"data-ref": ref,
"html": data
});
$(body).append($bGetTIP);
$span.on('mouseenter', function(){
$bGetTIP.show();
let top = $span.offset().top;
let left = $span.offset().left + $span.outerWidth();
$bGetTIP.css({"top":top,"left":left});
});
console.log("Injected Bible quote for ref = " + ref + " with value obtained from BibleGet service:");
console.log(data);
},
error: function(jqXHR, textStatus, errorThrown){
console.log("There was an error while trying to communicate with the BibleGet server:")
console.log(errorThrown + ' ' + textStatus + ': ' + jqXHR.responseText);
}
});
});
}
});
})(jQuery);