summaryrefslogtreecommitdiff
path: root/static/js
diff options
context:
space:
mode:
authorScott Ostler <sostler@deathmachine.local>2010-02-24 08:04:03 -0500
committerScott Ostler <sostler@deathmachine.local>2010-02-24 08:04:03 -0500
commit10e5c6b24b63e5a83922058d47380577808b8d3e (patch)
tree0cfaf9ce7ea312c7d2f084c2f5626ac421a9d9e3 /static/js
parentaf3d49a9c3092f600e62a66cc78a462ef9a70e7e (diff)
Added avatar uploading, images to logs
Diffstat (limited to 'static/js')
-rwxr-xr-xstatic/js/home.js3
-rwxr-xr-xstatic/js/pichat.js1
2 files changed, 2 insertions, 2 deletions
diff --git a/static/js/home.js b/static/js/home.js
index 60b5d07..e9be833 100755
--- a/static/js/home.js
+++ b/static/js/home.js
@@ -152,7 +152,8 @@ function login() {
var onSuccess = function(json) {
location.href = location.href;
if (typeof pageTracker !== 'undefined') {
- pageTracker._setCustomVar(1, "logged-in", nick,
+ pageTracker._setCustomVar(1, "logged-in", nick);
+ }
};
var onError = function(resp, textStatus, errorThrown) {
diff --git a/static/js/pichat.js b/static/js/pichat.js
index 566bd10..92d24a1 100755
--- a/static/js/pichat.js
+++ b/static/js/pichat.js
@@ -241,7 +241,6 @@ function initChat() {
}
function initProfile() {
-
jQuery(".linkify").each(function() {
var text = jQuery(this).text();
jQuery(this).html(linkify(text));