We have a Lore FAQ page. If you have Story/Lore related questions - make sure to check it out!

MediaWiki:Common.js

From The Ark: NieR Automata Lore
Revision as of 16:58, 3 October 2017 by Admin (talk | contribs)
Jump to: navigation, search
jQuery(document).ready( function( $ ) {
 $('td[data-sort-value]').each(function() {
    var value = $(this).attr('data-sort-value');

    $('td[data-sort-value]').each(function() {
       if (value == $(this).attr('data-sort-value')) {
          $(this).css("background-color", getRandomColor());
         }
    });
});
});

function getRandomColor() {
  var letters = '0123456789ABCDEF';
  var color = '#';
  for (var i = 0; i < 6; i++) {
    color += letters[Math.floor(Math.random() * 16)];
  }
  return color;
}