Jump to content

User:Frankie/modern.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// [[user:js/watchlist]]
if (wgCanonicalSpecialPageName == 'Watchlist') 
  importScript('user:js/watchlist.js');


// from User:Jarry1250/vector.js
jQuery(document).ready(function() {
 $('a[href^="/wiki/Special:Contributions/200"]').each( function(){
  if( $(this).attr('href').match('^/wiki/Special:Contributions/([0-9A-F]{1,4}:){7}[0-9A-F]{1,4}$') ){
   $(this).text( $(this).text().substr(0,16).trim(':') );
  }
 });
});