diff options
author | Friendika <info@friendika.com> | 2011-08-10 21:06:35 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-10 21:06:35 -0700 |
commit | 684ebd2ed8a2b225860b59256bf81146b1867d6a (patch) | |
tree | 5730a0213ccfd7bb19806d22222a955ff1d650ec /include/main.js | |
parent | 06408664db04cd1cac255d21e7bab54e6ba0c047 (diff) | |
download | volse-hubzilla-684ebd2ed8a2b225860b59256bf81146b1867d6a.tar.gz volse-hubzilla-684ebd2ed8a2b225860b59256bf81146b1867d6a.tar.bz2 volse-hubzilla-684ebd2ed8a2b225860b59256bf81146b1867d6a.zip |
enhance random_string, block public email replies
Diffstat (limited to 'include/main.js')
-rw-r--r-- | include/main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/main.js b/include/main.js index e5c78a065..6db1f4179 100644 --- a/include/main.js +++ b/include/main.js @@ -344,7 +344,7 @@ function contactgroupChangeMember(gid,cid) { $('body').css('cursor', 'wait'); $.get('contactgroup/' + gid + '/' + cid, function(data) { - $('body').css('cursor', 'auto'); + $('body').css('cursor', 'auto'); }); } @@ -402,3 +402,4 @@ Array.prototype.remove = function(item) { this.length = from < 0 ? this.length + from : from; return this.push.apply(this, rest); }; + |