diff options
| author | timb <timb@mb.local> | 2010-01-22 07:13:41 -0800 |
|---|---|---|
| committer | timb <timb@mb.local> | 2010-01-22 07:13:41 -0800 |
| commit | a5541502fbb496fbbd83ccd2e8c14b7558a9ebb0 (patch) | |
| tree | 4db79825bf8e500e742c53affb643295ad525eed /static/js/pichat.js | |
| parent | a2f14ecd203074859015c3cca7cbde2c03edcd17 (diff) | |
can login from profile; plaintext pw filler; better form handling; huge cursor on sign in button
Diffstat (limited to 'static/js/pichat.js')
| -rwxr-xr-x | static/js/pichat.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js index 20d3928..1c378e2 100755 --- a/static/js/pichat.js +++ b/static/js/pichat.js @@ -153,7 +153,7 @@ function updateUI(msgs, users) { } if (users !== null) { var flattened = users.sort().join(",") - if (!('userlist' in cache) || flattened != cache.userlist) { + if (!('userlist' in cache) || flattened != cache.userlist) { $("#userList").html($.map(users, buildUserDiv).join('')); } cache.userlist = flattened |
