Open all links in new window

pull/630/head
unknown 2020-06-01 02:33:22 +08:00
parent 420f0d6634
commit 903ea5ea68
No known key found for this signature in database
GPG Key ID: 4EBFB9D5BC1488AD
1 changed files with 17 additions and 0 deletions

View File

@ -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({