Community Central
Community Central

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* This Javascript inputs a clock next to the user navigation at the top of the page. */
/* Originally from: http://tardis.wikia.com/wiki/MediaWiki:Common.js/displayTimer.js */

var refreshDate;
var CLOCK_ID = "#globalNavigation .start-wikia-container a";//"displayTimer";

function showTime() {
	var	now = new Date(),
		hh = now.getUTCHours(),
		mm = now.getUTCMinutes(),
		ss = now.getUTCSeconds(),
		time = ( hh < 10 ? '0' + hh : hh ) + ':' + ( mm < 10 ? '0' + mm : mm ) + ':' + ( ss < 10 ? '0' + ss : ss );
	$(CLOCK_ID).empty().append('<span>' + time + '</span>');
	window.clearTimeout(refreshDate);
	refreshDate = window.setTimeout(showTime, 1000);
}

$(document).ready(function() {
	if (skin == 'oasis') {
		$(CLOCK_ID).attr("title", 'Purge the server cache and update the contents of this page.');
		$(CLOCK_ID).attr("href", wgArticlePath.replace('$1', wgPageName.replace(/ /g, '_')) + '?action=purge');
		$(CLOCK_ID).css({ "font-family":"\'Futura\', \'Gill Sans\', \'Helvetica Neue\',\'Trebuchet MS\', sans-serif" });
		
		/*$('#AccountNavigation .user-menu').prepend('<li><a id="displayTimer"></a></li>');
		
		$('#displayTimer').attr("title", 'Purge the server cache and update the contents of this page.');
		$('#displayTimer').attr("href", wgArticlePath.replace('$1', wgPageName.replace(/ /g, '_')) + '?action=purge');
		$('#displayTimer').css({
			"font-family":'\'Futura\', \'Gill Sans\', \'Helvetica Neue\',\'Trebuchet MS\', sans-serif'
		});*/
	}
	else {
		//$('#p-personal ul').prepend('<li id="displayTimer"></li>');
	}
	showTime();
	refreshDate = window.setTimeout(showTime, 1000);
});