From 807ff3308d320a7512270568f85da2212b47fa82 Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Tue, 9 Jun 2020 20:14:01 +0200 Subject: [PATCH] Elimina enlaces a manuel.cillero.es como locales MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Los enlaces a manuel.cillero.es vuelven a considerarse externos y se abrirĂ¡n en una nueva ventana. --- public/themes/circlepro/javascripts/theme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/themes/circlepro/javascripts/theme.js b/public/themes/circlepro/javascripts/theme.js index ab14c93..7f3eb22 100644 --- a/public/themes/circlepro/javascripts/theme.js +++ b/public/themes/circlepro/javascripts/theme.js @@ -64,7 +64,7 @@ if (window.jQuery) { // External links $("a").filter(function() { - return this.hostname && this.hostname !== location.hostname && this.hostname !== 'manuel.cillero.es'; + return this.hostname && this.hostname !== location.hostname; }).addClass("external").attr("target", "_blank"); });