From 903ea5ea68011ed0788ecf3ba5065f66fa88f4e1 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 1 Jun 2020 02:33:22 +0800 Subject: [PATCH] Open all links in new window --- js/privatebin.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/js/privatebin.js b/js/privatebin.js index 47aa2485..1170804a 100644 --- a/js/privatebin.js +++ b/js/privatebin.js @@ -5340,6 +5340,23 @@ jQuery.PrivateBin = (function($, RawDeflate) { SAFE_FOR_JQUERY: true }); + // Add a hook to make all links open a new window + DOMPurify.addHook('afterSanitizeAttributes', function(node) { + // set all elements owning target to target=_blank + if ('target' in node && node.id !== 'pasteurl') { + node.setAttribute('target', '_blank'); + } + // set non-HTML/MathML links to xlink:show=new + if (!node.hasAttribute('target') + && (node.hasAttribute('xlink:href') + || node.hasAttribute('href'))) { + node.setAttribute('xlink:show', 'new'); + } + if ('rel' in node) { + node.setAttribute('rel', 'nofollow noopener noreferrer'); + } + }); + // center all modals $('.modal').on('show.bs.modal', function(e) { $(e.target).css({