Difference between revisions of "MediaWiki:Common.js"

From Buddha-Nature
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
 
(9 intermediate revisions by the same user not shown)
Line 8: Line 8:
 
     $.fn.fullpage.moveSectionDown();
 
     $.fn.fullpage.moveSectionDown();
 
});
 
});
 
 
 
 
// API Tests
 
 
var apiEndpoint = "https://commons.tsadra.org/api.php";
 
var params = "action=ask&query=[[Modification date::%2B]]|%3FModification date|sort%3DModification date|order%3Ddesc&format=jsonfm";
 
 
/**
 
* Send the request to get the images
 
*/
 
fetch(apiEndpoint + "?" + params + "&origin=*")
 
    .then(function(response){return response.json();})
 
    .then(function(response) {
 
          var allimages = response.query.allimages; // Process the output to get the image names
 
          Object.keys(allimages).forEach(function(key) {
 
              console.log(allimages[key].name);
 
          });
 
    });
 

Latest revision as of 18:26, 16 December 2022

// Discover page anchors
$('.fp-arrowUp').click(function(){
    $.fn.fullpage.moveSectionUp();
});
$('.fp-arrowDown').click(function(){
    $.fn.fullpage.moveSectionDown();
});