MediaWiki:Gadget-selfHighlight.js

Fonte: Terraria Wiki
Saltar para a navegação Saltar para a pesquisa

Nota: Depois de publicar, poderá ter de contornar a cache do seu navegador para ver as alterações.

  • Firefox / Safari: Pressione Shift enquanto clica Recarregar, ou pressione Ctrl-F5 ou Ctrl-R (⌘-R no Mac)
  • Google Chrome: Pressione Ctrl-Shift-R (⌘-Shift-R no Mac)
  • Internet Explorer / Edge: Pressione Ctrl enquanto clica Recarregar, ou pressione Ctrl-F5
  • Opera: Pressione Ctrl-F5.
// By Equazcion: http://terraria.gamepedia.com/User:Equazcion

$('#bodyContent a[href]').each(function(){
	var $this = $(this);
	if ($this.attr('href') == '/User:' + mw.config.get('wgUserName')){
		$this.addClass('self-highlight');
		$this.attr('style','background-color:#6ff !important');
	}
});