Diferencia entre revisiones de «MediaWiki:Vector.js»
Ir a la navegación
Ir a la búsqueda
(No se muestran 5 ediciones intermedias de otro usuario) | |||
Línea 1: | Línea 1: | ||
/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios que usen la apariencia Vector */ | /* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios que usen la apariencia Vector */ | ||
+ | |||
$(".infobox-autor p").remove(); | $(".infobox-autor p").remove(); | ||
− | |||
$("#mw-content-text p").each(function() { | $("#mw-content-text p").each(function() { | ||
var $this = $(this); | var $this = $(this); | ||
− | if( $.trim($this.html()) == "") $this.remove(); | + | if( $.trim($this.html()) == "<br>") $this.remove(); |
}); | }); |
Revisión actual del 15:40 16 mar 2021
/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios que usen la apariencia Vector */
$(".infobox-autor p").remove();
$("#mw-content-text p").each(function() {
var $this = $(this);
if( $.trim($this.html()) == "<br>") $this.remove();
});