diff options
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); }; + |