mirror of
https://github.com/garrettsworkshop/Warp-SE.git
synced 2024-11-22 23:31:10 +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>
|