Revision 297090 of "MediaWiki:Gadget-ChangeFavicon.js" on cswiktionary

/*global mediaWiki, jQuery*/
/*jslint browser: true, plusplus: true, white: true */
/*jshint browser:true, laxbreak:false, plusplus:false, white:false */
jQuery( document ).ready( function ( $ ) {
  
  var iconUrl = '//upload.wikimedia.org/wiktionary/favicon-piece.ico';
  
  $('head link[rel="shortcut icon"]').replaceWith('<link rel="shortcut icon" type="image/x-icon" href="' + iconUrl + '" />');
  
} );