Browse Source

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
pull/3036/head
Yunus Emre Kalkan 6 years ago
parent
commit
22b88eeecc
  1. 5
      modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/detail.js

5
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);

Loading…
Cancel
Save