mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2024-11-24 21:34:16 +00:00
15 lines
354 B
HTML
15 lines
354 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function init() {
|
||
|
document.open();
|
||
|
document.write(window.opener.document.options.htmlStr.value);
|
||
|
document.write("<form><center><input type='button' value='close' onclick='window.close()'></center></form>");
|
||
|
document.close();
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="javascript:init()">
|
||
|
</body>
|
||
|
</html>
|