mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
10 lines
245 B
HTML
10 lines
245 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
const url = new URL(location.href);
|
|
const port = url.searchParams.get('port');
|
|
document.write("<img src='http://127.0.0.1:" + port + "/logo.png' />");
|
|
</script>
|
|
</body>
|
|
</html>
|