|
||||||
|
|
|
||||||||||||||||||||||||
MediaWiki:Common.js: mudanças entre as edições
Ir para navegação
Ir para pesquisar
| Linha 26: | Linha 26: | ||
}); | }); | ||
$('.target-div').load('http://www.tibiawiki.com.br/ | $('.target-div').load('http://www.tibiawiki.com.br/mapa.html?x=32364&y=32234&z=7&zoom=2'); | ||
Edição das 00h17min de 23 de setembro de 2012
/* Tooltips */
$(document).ready(function() {
$(".tooltip").hover(function(){
tip = $(this).find('.tip');
tip.show();
}, function() {
tip.hide();
}).mousemove(function(e) {
var mousex = e.pageX - 150;
var mousey = e.pageY - 165;
});
});
/* Tirar ícone de links externos */
$('.mapa > a').removeClass('external text');
/* Diálogos */
$(document).ready(function() {
$('.dialogos').click(function() {
var id = $(this).attr('id');
$('#div' + id).toggle();
$('span',this).toggle();
// alert(id);
return false;
});
});
$('.target-div').load('http://www.tibiawiki.com.br/mapa.html?x=32364&y=32234&z=7&zoom=2');