Sha256: a4756a75dcee2e3a3d51a3ccb6e61a4aadfbef76c26362d279626de26b312dbf
Contents?: true
Size: 480 Bytes
Versions: 23
Compression:
Stored size: 480 Bytes
Contents
<!DOCTYPE HTML> <html> <head> <title>closeable window</title> <script> function closeDelayed(timeout) { setTimeout(function() { window.close(); }, timeout); } </script> </head> <body> <p> Click <a id="close" href="#" onclick="window.close()">here</a> to close this window. Click <a id="close-delay" href="#" onclick="closeDelayed(500)">here</a> to close this window with a delay. </p> </body> </html>
Version data entries
23 entries across 23 versions & 1 rubygems