From 22b88eeeccb4efc10abd3437080aefaffaba5974 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Mon, 9 Mar 2020 15:30:45 +0300 Subject: [PATCH] blogging: links in new tab The links in the same domain should be targetted to the self window, but other website links should be opened in a new tab --- .../src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.js b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.js index bd0ca4938e..0527ec20db 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.js +++ b/modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.js @@ -135,4 +135,9 @@ }, 500); } + + $(".post-content a[href^='http']").each(function () { + $(this).attr('target','_blank'); + }); + })(jQuery);