MediaWiki:Common.js

From EmuVR Wiki
Jump to: navigation, search

Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools โ†’ Preferences
/* Any JavaScript here will be loaded for all users on every page load. */

if(document.querySelector('#pt-logout'))
  document.body.classList.add('mw-logged-in');

var headers = document.querySelectorAll('.mw-headline');
for(var i = 0; i < headers.length; i++){
  headers[i].classList.add('anchorlink');
  var link = document.createElement('a');
  link.textContent = 'ยง Link';
  link.setAttribute('href', '#' + headers[i].getAttribute('id'));
  headers[i].appendChild(link);
}

$.getScript('https://cdnjs.cloudflare.com/ajax/libs/floatthead/2.1.4/jquery.floatThead.min.js', function() {
  $('.float-thead').each(function(){
    $(this).find('tbody').before($(this).find('tr').first());
    $(this).find('tr').first().replaceWith('<thead>' + $(this).find('tr').first().html() + '</thead>');
    $(this).floatThead();});
});