MediaWiki:Common.js: mudanças entre as edições
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 1: | Linha 1: | ||
$(document).ready(function() { | $(document).ready(function() { | ||
$('a.image-popup').click(function(event) { | $('a.image-popup').click(function(event) { | ||
Edição das 08h28min de 28 de março de 2025
$(document).ready(function() {
$('a.image-popup').click(function(event) {
event.preventDefault();
var imageUrl = $(this).attr('href');
var popupWindow = window.open(imageUrl, 'ImagemPopup', 'width=800,height=600,resizable=yes,scrollbars=yes');
if (popupWindow) {
popupWindow.focus();
}
});
});