This commit is contained in:
Michele Azzolari 2018-10-10 10:22:02 +02:00
parent f263331209
commit c42db76553

View file

@ -41,6 +41,7 @@ const getTemplateHtml = template => {
const valueChange = value => {
const iframehtml = document.getElementById('iframe').contentWindow.document.getElementById(value);
if(!iframehtml) return;
const val = document.getElementById(value).value;
iframehtml.innerHTML = val
};