peterk / twoot

An open source light-weight OS X twitter client based on jQuery and Fluid

This URL has Read+Write access

twoot / twoot.htm
100644 25 lines (24 sloc) 1.061 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Twoot</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<script type="text/javascript" src="jquery-latest.pack.js"></script>
<script type="text/javascript" src="jquery.hotkeys-0.7.8-packed.js"></script>
<script type="text/javascript" src="twoot.js"></script>
<link href="styles/hud-black/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="tweets">
<div id="alert"><p></p></div>
<ul class="tweet_list"></ul>
</div>
<div id="message_entry">
<form id="status_entry" method="post">
<label for="status">What are you doing? <div id="status_count">140</div></label>
<input type="text" name="status" onBlur="updateStatusCount()" onChange="updateStatusCount()" onKeyPress="updateStatusCount()" maxlength="140" id="status" />
<input type="submit" id="send" value="Send" />
</form>
</div>
</body>
</html>