mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
git-svn-id: http://svn.redmine.org/redmine/trunk@13498 e93f8b46-1217-0410-a6f0-8f06a7374b81
14 lines
583 B
Plaintext
14 lines
583 B
Plaintext
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'principal_memberships/new_modal') %>');
|
|
showModal('ajax-modal', '700px');
|
|
|
|
$('.projects-selection').on('click', 'input[type=checkbox]', function(e){
|
|
if (!$(this).is(':checked')) {
|
|
if ($(this).closest('li').find('ul input[type=checkbox]:not(:checked)').length > 0) {
|
|
$(this).closest('li').find('ul input[type=checkbox]:not(:checked)').attr('checked', 'checked');
|
|
e.preventDefault();
|
|
} else {
|
|
$(this).closest('li').find('ul input[type=checkbox]:checked').removeAttr('checked');
|
|
}
|
|
}
|
|
});
|