foreground.js 496 B

12345678910
  1. jQuery(document).ready(function() {
  2. jQuery(document).foundation();
  3. // Split the namespace title into a title and a label
  4. var $title = jQuery("h2:contains(':')").not(":contains('\"')").not(":contains('as of')").text().split(":");
  5. jQuery("h2:contains(':')").not(":contains('\"')").not(":contains('as of')").html('<small class="label">' + $title[0] + '</small><span>' + $title[1] + '</span>');
  6. // Turn categories into labels
  7. jQuery('#mw-normal-catlinks ul li a').addClass('label');
  8. });