diff options
author | Friendika <info@friendika.com> | 2011-08-02 22:39:35 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-02 22:39:35 -0700 |
commit | e22e823e93756fbfbb175f4f9f182aee64c1f5b1 (patch) | |
tree | 04aba82a020894da4e9ea8bd0e933cd96a0d25e3 /include/main.js | |
parent | 6bf800c6c8ea90d86cadb58b862ecddcf40e7b2a (diff) | |
download | volse-hubzilla-e22e823e93756fbfbb175f4f9f182aee64c1f5b1.tar.gz volse-hubzilla-e22e823e93756fbfbb175f4f9f182aee64c1f5b1.tar.bz2 volse-hubzilla-e22e823e93756fbfbb175f4f9f182aee64c1f5b1.zip |
allow group selection from contact edit page
Diffstat (limited to 'include/main.js')
-rw-r--r-- | include/main.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/main.js b/include/main.js index d17d923e4..e5c78a065 100644 --- a/include/main.js +++ b/include/main.js @@ -341,6 +341,14 @@ }); } + function contactgroupChangeMember(gid,cid) { + $('body').css('cursor', 'wait'); + $.get('contactgroup/' + gid + '/' + cid, function(data) { + $('body').css('cursor', 'auto'); + }); + } + + function checkboxhighlight(box) { if($(box).is(':checked')) { $(box).addClass('checkeditem'); |