mirror of https://github.com/xwiki-labs/cryptpad
use URL API to identify remote hrefs
This commit is contained in:
parent
c0d2af50ef
commit
dc071d0095
|
@ -90,12 +90,21 @@ define([
|
|||
});
|
||||
});
|
||||
|
||||
var isLocalURL = url => {
|
||||
try {
|
||||
return new URL(url, window.location.href).origin === window.location.origin;
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
return /^\//.test(url);
|
||||
}
|
||||
};
|
||||
|
||||
var pageLink = function (ref, loc, text) {
|
||||
if (!ref) { return; }
|
||||
var attrs = {
|
||||
href: ref,
|
||||
};
|
||||
if (!/^\//.test(ref)) {
|
||||
if (!isLocalURL(ref)) {
|
||||
attrs.target = '_blank';
|
||||
attrs.rel = 'noopener noreferrer';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue