1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-01-03 10:31:54 +01:00

Applying code style rules.

This commit is contained in:
kkapsner 2018-07-21 19:35:24 +02:00
parent 7bfd300f6a
commit c037038da6

View File

@ -7,7 +7,7 @@
document.getElementById("code").textContent = iframeCode;
var blob = new Blob([iframeCode], {type : 'text/html'});
var blob = new Blob([iframeCode], {type: "text/html"});
var newurl = window.URL.createObjectURL(blob);
document.getElementById("blobIframe").src = newurl;
}());