yosup/webv2/index.html
William Casarin eec07c3b1b web: don't show threads in reply compose view
Sometimes it gets too large and scrolls of the screen. Temporary fix
until I have something better
2022-11-04 12:16:46 -07:00

51 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Damus</title>
<link rel="stylesheet" href="damus.css?v=12">
</head>
<body>
<section class="header">
<span class="logo">
<img src="img/damus-nobg.svg"/>
</span>
</section>
<div id="view" class="container">
</div>
<div style="display: none" id="reply-modal">
<div id="reply-modal-content">
<span id="reply-top">
<a class="close" href="javascript:close_reply()"></a>
<span class="small-text">
Replying to...
</span>
</span>
<div id="replying-to">
</div>
<div>
<textarea id="reply-content"></textarea>
</div>
<div style="float:right">
<button onclick="do_send_reply()" id="reply-button">Reply</button>
</div>
</div>
</div>
<script src="noble-secp256k1.js?v=1"></script>
<script src="bech32.js?v=1"></script>
<script src="nostr.js?v=6"></script>
<script src="damus.js?v=44"></script>
<script>
// I have to delay loading to wait for nos2x
const relay = setTimeout(damus_web_init, 100)
</script>
</body>
</html>