##// END OF EJS Templates
add missing ; at toggleCheckboxesBySelector of application.js (#13811)...
Toshi MARUYAMA -
r11500:98bb49382bd3
parent child
Show More
@@ -14,7 +14,7 function toggleCheckboxesBySelector(selector) {
14 $(selector).each(function(index) {
14 $(selector).each(function(index) {
15 if (!$(this).is(':checked')) { all_checked = false; }
15 if (!$(this).is(':checked')) { all_checked = false; }
16 });
16 });
17 $(selector).attr('checked', !all_checked)
17 $(selector).attr('checked', !all_checked);
18 }
18 }
19
19
20 function showAndScrollTo(id, focus) {
20 function showAndScrollTo(id, focus) {
General Comments 0
You need to be logged in to leave comments. Login now