Jump to content

User:Voice of All/UTCclock.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
//A clock that autoupdates
//From the user scripts project
$(loadclock)
function loadclock()
{
  if(typeof addlilink === 'undefined') { mw.log.error('User:Voice_of_All/UTCclock.js is not working.'); return; }
  //monobook
    if (document.getElementById('pt-userpage'))
      {
      var toplinks = document.getElementById('p-personal').getElementsByTagName('ul')[0];
      addlilink(toplinks, mw.config.get('wgScript') + '?title=' + mw.config.get('wgPageName').replace(/&/g,'%26') + '&action=purge', '', 'utcdate');
      }
  //cologneblue
    else if (document.getElementById('quickbar') && document.getElementById('quickbar').getElementsByTagName('h6')[0])
       {
       var toplinks = document.getElementById('quickbar');
       addquickbarlink(mw.config.get('wgScript') + '?title=' + mw.config.get('wgPageName').replace(/&/g,'%26') + '&action=purge', 'Current time', 'utcdate','Browse')
       }
    showtime();
}

function showtime()
{
    var timerID;
    var now = new Date();
    var timeValue = now.toUTCString().substring(0,22) + " UTC";
    if (document.getElementById('utcdate'))
      {document.getElementById('utcdate').firstChild.innerHTML = timeValue;}
    timerID = setTimeout('showtime()', 1000);
}