Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
m |
|||
Line 6: | Line 6: | ||
} | } | ||
*/ | */ | ||
$(window).scroll(function(){ | |||
var fixed = $("#IL_INSEARCH"); | |||
var fixed_position = $("#IL_INSEARCH").offset().top; | |||
var fixed_height = $("#IL_INSEARCH").height(); | |||
var toCross_position = $("#taboola-below-article-thumbnails").offset().top; | |||
var toCross_height = $("#taboola-below-article-thumbnails").height(); | |||
if (fixed_position + fixed_height < toCross_position) { | |||
fixed.removeClass('white'); | |||
} else if (fixed_position > toCross_position + toCross_height) { | |||
fixed.removeClass('displaynone'); | |||
} else { | |||
fixed.addClass('displaynone'); | |||
} | |||
}); |
Revision as of 01:22, 22 October 2020
/* Any JavaScript here will be loaded for all users on every page load. */ // Scripts to use when viewing articles /* if (mw.config.get('wgIsArticle') || window.location.href.indexOf('action=submit') > -1 || mw.config.get('wgNamespaceNumber') == -1) { mw.loader.load( '/index.php?title=MediaWiki:CollapsibleTables.js&action=raw&ctype=text/javascript' ); } */ $(window).scroll(function(){ var fixed = $("#IL_INSEARCH"); var fixed_position = $("#IL_INSEARCH").offset().top; var fixed_height = $("#IL_INSEARCH").height(); var toCross_position = $("#taboola-below-article-thumbnails").offset().top; var toCross_height = $("#taboola-below-article-thumbnails").height(); if (fixed_position + fixed_height < toCross_position) { fixed.removeClass('white'); } else if (fixed_position > toCross_position + toCross_height) { fixed.removeClass('displaynone'); } else { fixed.addClass('displaynone'); } });