mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
16 lines
710 B
JavaScript
16 lines
710 B
JavaScript
// SUPER CHEAP TEMPLATES !
|
|
window._ctl = function (event) {
|
|
var iframe=event.target || event.srcElement, div=document.createElement("div");
|
|
div.innerHTML = iframe.contentWindow.document.body.innerHTML;
|
|
if (div.children.length == 1) div = div.children[0];
|
|
iframe.parentNode.replaceChild(div, iframe);
|
|
};
|
|
// cheap template prepare
|
|
window._ctp = function (event) {
|
|
var iframe=event.target || event.srcElement, script=document.createElement("script");
|
|
script.setAttribute("type", "text/html");
|
|
script.setAttribute("id", iframe.getAttribute("src"));
|
|
script.innerHTML = iframe.contentWindow.document.body.innerHTML;
|
|
iframe.parentNode.removeChild(iframe);
|
|
document.body.appendChild(script);
|
|
}; |