mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 22:05:56 +01:00
Projects selection on custom field form (#15136).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12225 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -2,11 +2,7 @@
|
||||
Copyright (C) 2006-2013 Jean-Philippe Lang */
|
||||
|
||||
function checkAll(id, checked) {
|
||||
if (checked) {
|
||||
$('#'+id).find('input[type=checkbox]').attr('checked', true);
|
||||
} else {
|
||||
$('#'+id).find('input[type=checkbox]').removeAttr('checked');
|
||||
}
|
||||
$('#'+id).find('input[type=checkbox]:enabled').attr('checked', checked);
|
||||
}
|
||||
|
||||
function toggleCheckboxesBySelector(selector) {
|
||||
|
||||
Reference in New Issue
Block a user