add missing ; at toggleCheckboxesBySelector of application.js (#13811)
Contributed by Adrian Wilkins. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11730 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
b31d1329ca
commit
98bb49382b
|
@ -14,7 +14,7 @@ function toggleCheckboxesBySelector(selector) {
|
|||
$(selector).each(function(index) {
|
||||
if (!$(this).is(':checked')) { all_checked = false; }
|
||||
});
|
||||
$(selector).attr('checked', !all_checked)
|
||||
$(selector).attr('checked', !all_checked);
|
||||
}
|
||||
|
||||
function showAndScrollTo(id, focus) {
|
||||
|
|
Loading…
Reference in New Issue