1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-03-17 21:18:19 +02:00

Merge branch 'release/v1.2.9'

This commit is contained in:
Ralph Slooten 2022-11-18 13:26:29 +13:00
commit 3dd004ea4b
2 changed files with 9 additions and 3 deletions

View File

@ -2,6 +2,12 @@
Notable changes to Mailpit will be documented in this file.
## v1.2.9
### Bugfix
- Delay 200ms to set `target="_blank"` for all rendered email links
## v1.2.8
### Bugfix

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 || {};