mirror of
https://github.com/friendica/friendica
synced 2025-04-22 03:10:10 +00:00
allow group selection from contact edit page
This commit is contained in:
parent
6bf800c6c8
commit
e22e823e93
4 changed files with 97 additions and 10 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue