Changed URLs to open in separate tab by default

This commit is contained in:
sairaj mote 2022-02-17 16:40:32 +05:30
parent ff966be910
commit 17ced68102

View File

@ -2473,7 +2473,11 @@
(startA || endA).setAttribute('href', url)
} else {
replaceSelectedText(createElement('a', {
attributes: { href: url }
attributes: {
href: url,
target: "_blank",
rel: "noopener noreferrer"
}
}))
}
}