Commit c6bab421 authored by Juan Corona's avatar Juan Corona

Use actual src attribute for 2nd frame in live reload template

(was testing `srcdoc` and forgot to remove this before pushing)
parent 44918b5e
......@@ -124,7 +124,7 @@ function LiveReloadServer(port, config) {
if (!iframeIsAdded) {
var iframe1 = document.querySelector('#iframe1');
var iframeNew = iframe1.cloneNode();
iframeNew.srcdoc = "/document/changelog";
iframeNew.src = "/document/changelog";
iframeNew.id = "iframe2";
iframeIsAdded = true;
document.querySelector('#iframe2-container').appendChild(iframeNew);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment