diff options
| author | sostler <sbostler@gmail.com> | 2010-03-26 19:27:03 -0400 |
|---|---|---|
| committer | sostler <sbostler@gmail.com> | 2010-03-26 19:27:03 -0400 |
| commit | c3f21596346e9276d625e9ec62a56496092ea18f (patch) | |
| tree | 30577c78f2b4ecf2eff10c640566733103867d0b | |
| parent | 245ac1be8d4167cd1086ed0a67dd7f072f054956 (diff) | |
Added default avatar to pichat.js
| -rwxr-xr-x | static/js/pichat.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js index f643970..b4b7c7d 100755 --- a/static/js/pichat.js +++ b/static/js/pichat.js @@ -95,6 +95,7 @@ function buildUserDiv(user) { } else { return '<div class="username">' + '<a href="/u/' + escapeHtml(user.nick) + '" target="_blank">' + + '<img src="/static/noinfo.png" width="50" height="50">' + escapeHtml(user.nick) + '</a></div>'; } } |
