Advertisement
sactage

Untitled

Jun 4th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var refreshDate;
  2.  
  3. function addDate() {
  4.     var UTCDate = ((new Date()).toUTCString()).replace("GMT", "(UTC)");
  5.     $('#showdate').empty().append('<span class="barDate" style="font-weight: bold; text-transform: none;"><a style="color:white;" title="Purge the server cache and update the contents of this page." href="' + wgArticlePath.replace('$1', wgPageName.replace(/ /g, '_')) + '?action=purge">' + UTCDate.substring(5) + '</a></span>');
  6.     window.clearTimeout(refreshDate);
  7.     refreshDate = window.setTimeout(addDate, 1000);
  8. }
  9.  
  10. $(document).ready(function() {
  11.     if (skin == 'oasis')
  12.         $('<li id="displayTimer"><span id="showdate"></span></li>').appendTo('#GlobalNavigation');
  13.     else
  14.         $('#p-personal ul').prepend('<li><span id="showdate"></span></li>');
  15.     addDate();
  16.     refreshDate = window.setTimeout(addDate, 1000);
  17.     $('#displayTimer').css({'font-size': "12px"});
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement