foreground.js 478 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:not(:contains("\""))').jQuery('h2:contains(":")').text().split(":");
  5. jQuery('h2:not(:contains("\""))').jQuery('h2:contains(":")').html('<small class="label">' + $title[0] + '</small><div class="clear_both"></div>' + $title[1]);
  6. // Turn categories into labels
  7. jQuery('#mw-normal-catlinks ul li a').addClass('label');
  8. });