Difference between revisions of "MediaWiki:Common.js"

From SgWiki
Jump to navigation Jump to search
m
m
Line 8: Line 8:


$('span.Advisory,td.Advisory,th.Advisory').each(function () {
$('span.Advisory,td.Advisory,th.Advisory').each(function () {
if ($(this).hasClass('n' + x)) {
if (!$(this).hasClass(x)) {
if ($(this).hasClass('train') || $(this).hasClass('event')) $(this).remove();
if (($(this).hasClass('train') || $(this).hasClass('event')) && !$(this).hasClass('not')) $(this).remove();
} else if (!$(this).hasClass(x)) {
} else {
if ($(this).hasClass('train') || $(this).hasClass('event')) $(this).remove();
if (($(this).hasClass('train') || $(this).hasClass('event')) && $(this).hasClass('not')) $(this).remove();
};
};
})
})

Revision as of 10:13, 19 April 2019

/* Any JavaScript here will be loaded for all users on every page load. */

var d = new Date();
var hour = d.getHours();
if (hour <= 4) { d.setTime(d.getTime() - 7200000); }

var x = ('00' + d.getDate()).substr(-2) + ('00' + (d.getMonth() + 1)).substr(-2) + ('00' + d.getFullYear()).substr(-2);

$('span.Advisory,td.Advisory,th.Advisory').each(function () {
	if (!$(this).hasClass(x)) {
		if (($(this).hasClass('train') || $(this).hasClass('event')) && !$(this).hasClass('not')) $(this).remove();
	} else {
		if (($(this).hasClass('train') || $(this).hasClass('event')) && $(this).hasClass('not')) $(this).remove();
	};
})
$('span.Advisory:last-of-type').find('hr').remove();
if ($('table#TravelAdvisory span.Advisory').length == 0) $('table#TravelAdvisory').remove();

/* Customised sgWiki Theme */
/*Christmas*/
//$('div#bodyContent').append('<div id="snowflakes"><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i></div>');