allow group selection from contact edit page

This commit is contained in:
Friendika 2011-08-02 22:39:35 -07:00
parent 6bf800c6c8
commit e22e823e93
4 changed files with 97 additions and 10 deletions

View file

@ -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');