Difference between revisions of "MediaWiki:Common.js"

From EmuVR Wiki
Jump to: navigation, search
m
m
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
  
var imported = document.createElement('script');
+
if(document.querySelector('#pt-logout'))
imported.src = "/../w/index.php?title=MediaWiki:FloatThead.js&action=raw&ctype=text\/javascript";
+
  document.body.classList.add('mw-logged-in');
console.log(imported);
+
document.head.appendChild(imported);
+
  
 
var headers = document.querySelectorAll('.mw-headline');
 
var headers = document.querySelectorAll('.mw-headline');
Line 14: Line 12:
 
   headers[i].appendChild(link);
 
   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();});
 +
});

Latest revision as of 18:49, 13 April 2021

/* 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();});
});