MediaWiki:Common.js: Difference between revisions
From Buddha-Nature
((by SublimeText.Mediawiker)) |
((by SublimeText.Mediawiker)) |
||
Line 14: | Line 14: | ||
// API Tests | // API Tests | ||
var apiEndpoint = "https://commons.tsadra.org/api.php"; | var apiEndpoint = "https://commons.tsadra.org/api.php"; | ||
var params = "action=ask&query=[[Dorje,_G.]]|%3FBio&format= | var params = "action=ask&query=[[Dorje,_G.]]|%3FBio&format=json"; | ||
/** | /** |
Revision as of 17:25, 16 December 2022
// Discover page anchors
$('.fp-arrowUp').click(function(){
$.fn.fullpage.moveSectionUp();
});
$('.fp-arrowDown').click(function(){
$.fn.fullpage.moveSectionDown();
});
// API Tests
var apiEndpoint = "https://commons.tsadra.org/api.php";
var params = "action=ask&query=[[Dorje,_G.]]|%3FBio&format=json";
/**
* Send the request to get the images
*/
fetch(apiEndpoint + "?" + params + "&origin=*")
.then(function(response){return response.json();})
.then(function(response) {
var results = response.query.results; // Process the output to get the image names
Object.keys(results).forEach(function(key) {
console.log(results[key].Bio);
});
});