1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-07-11 01:10:20 +02:00

Bugfix: Delay 200ms to set target="_blank" for all rendered email links

Fixes #22
This commit is contained in:
Ralph Slooten
2022-11-18 13:25:15 +13:00
parent 0ea4cab33b
commit 54635b748a

View File

@ -66,8 +66,8 @@ export default {
document.activeElement.blur(); // blur focus
document.getElementById('message-view').scrollTop = 0;
// delay until vue has rendered
self.$nextTick(function () {
// delay 0.2s until vue has rendered the iframe content
window.setTimeout(function () {
let p = document.getElementById('preview-html');
if (p) {
// make links open in new window
@ -82,7 +82,7 @@ export default {
}
self.resizeIframes();
}
});
}, 200);
// html highlighting
window.Prism = window.Prism || {};