Merge pull request #331 from solstag/jqueryprop

Fix accepting contacts by using correct jquery calls.
This commit is contained in:
redmatrix 2015-05-24 12:50:43 +10:00
commit a332dfcf6b

View File

@ -345,12 +345,12 @@ function connedit_content(&$a) {
$o .= "<script>function connectDefaultShare() { $o .= "<script>function connectDefaultShare() {
\$('.abook-edit-me').each(function() { \$('.abook-edit-me').each(function() {
if(! $(this).is(':disabled')) if(! $(this).is(':disabled'))
$(this).removeAttr('checked'); $(this).prop('checked', false);
});\n\n"; });\n\n";
$perms = get_perms(); $perms = get_perms();
foreach($perms as $p => $v) { foreach($perms as $p => $v) {
if($my_perms & $v[1]) { if($my_perms & $v[1]) {
$o .= "\$('#me_id_perms_" . $p . "').attr('checked','checked'); \n"; $o .= "\$('#me_id_perms_" . $p . "').prop('checked', true); \n";
} }
} }
$o .= " }\n</script>\n"; $o .= " }\n</script>\n";