Difference between revisions of "MediaWiki:Common.js"

From Buddha-Nature
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
 
(62 intermediate revisions by the same user not shown)
Line 1: Line 1:
$(document).ready(function(){
+
 
$(".person-toggle").hover(function(){
+
 
$(this).next(".bnw-event-person").toggleClass("hide show");
+
// Discover page anchors
});
+
$('.fp-arrowUp').click(function(){
 +
    $.fn.fullpage.moveSectionUp();
 +
});
 +
$('.fp-arrowDown').click(function(){
 +
    $.fn.fullpage.moveSectionDown();
 
});
 
});

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();
});