diff options
| author | Scott Ostler <sostler@deathmachine.local> | 2010-01-15 13:52:39 -0500 |
|---|---|---|
| committer | Scott Ostler <sostler@deathmachine.local> | 2010-01-15 13:52:39 -0500 |
| commit | 233260244803dad4c892f9ab52fee3d5e48b3b39 (patch) | |
| tree | 72392a6326009f90c1786f2bb482471ba81a1f79 /static/chatbar.html | |
| parent | 692e2d725f278708324fd2534007448ed03a150d (diff) | |
| parent | d542c7f4476b14d6a0fa2c1089ed6ff1fe8da5dc (diff) | |
Merge branch 'master' of ssh://dump.fm/home/dumpfmprod/prod/
Diffstat (limited to 'static/chatbar.html')
| -rwxr-xr-x | static/chatbar.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/static/chatbar.html b/static/chatbar.html new file mode 100755 index 0000000..69d0727 --- /dev/null +++ b/static/chatbar.html @@ -0,0 +1,57 @@ +<html> + <head> + <title>dump.fm</title> + <link rel="stylesheet" type="text/css" href="/static/reset.css"> + <link rel="stylesheet" type="text/css" href="/static/pichat.css"> + + <link rel="shortcut icon" href="favicon.ico"> + <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> + <script type="text/javascript" src="sha1.js"></script> + <script type="text/javascript" src="pichat.js"></script> + <script> + jQuery(document).ready(initChat); + var Nick = $json_user_nick$; + </script> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><style type="text/css"> +<!-- +a { + font-size: 12px; + color: #000; +} +a:link { + text-decoration: none; +} +a:visited { + text-decoration: none; + color: #000; +} +a:hover { + text-decoration: none; + color: #00F; +} +a:active { + text-decoration: none; + color: #000; +} +#msgInputDiv{position:fixed; +bottom:17px; +} + +--> +</style></head> + +<body> +<div id="chatrap"> + $if(user_nick)$ + <div id="msgInputDiv"> + <input id="msgInput" class="msgInput" type="input" /> + <input id="msgSubmit" type="submit" value="Send Image URL" + /> + </div> + $endif$ + </div> + </div> + + + </body> +</html> |
