Ver a proveniência

Add polyfill for browsers not supporting srcdoc

master
Simon Ser há 4 anos
ascendente
cometimento
d745f98bb7
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: FDE7BE0E88F5E48
2 ficheiros alterados com 10 adições e 1 eliminações
  1. +10
    -0
      plugins/base/public/assets/script.js
  2. +0
    -1
      plugins/base/public/message.html

+ 10
- 0
plugins/base/public/assets/script.js Ver ficheiro

@@ -1,8 +1,18 @@
var emailFrame = document.getElementById("email-frame");
if (emailFrame) {
// Resize the frame with its content
var resizeFrame = function() {
emailFrame.style.height = emailFrame.contentWindow.document.documentElement.scrollHeight + "px";
};
emailFrame.addEventListener("load", resizeFrame);
emailFrame.contentWindow.addEventListener("resize", resizeFrame);

// Polyfill in case the srcdoc attribute isn't supported
if (!emailFrame.srcdoc) {
var srcdoc = emailFrame.getAttribute("srcdoc");
var doc = emailFrame.contentWindow.document;
doc.open();
doc.write(srcdoc);
doc.close();
}
}

+ 0
- 1
plugins/base/public/message.html Ver ficheiro

@@ -113,7 +113,6 @@
{{if .Body}}
<p><a href="{{.Message.Uid}}/reply?part={{.PartPath}}">Reply</a></p>
{{if .IsHTML}}
<!-- TODO: add a src fallback -->
<!-- allow-same-origin is required to resize the frame with its content -->
<!-- allow-popups is required for target="_blank" links -->
<iframe id="email-frame" srcdoc="{{.Body}}" sandbox="allow-same-origin allow-popups"></iframe>


Carregando…
Cancelar
Guardar