Changeset 23391
- Timestamp:
- Jun 20, 2013, 10:12:04 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/community/admin_pendings.tpl
r16637 r23391 35 35 if (event.target.type !== 'checkbox') { 36 36 var checkbox = $(this).children("input[type=checkbox]"); 37 $(checkbox).attr('checked', !$(checkbox).is(':checked'));37 jQuery(checkbox).prop('checked', !jQuery(checkbox).prop('checked')); 38 38 } 39 39 checkSelectedRows(); … … 41 41 42 42 $("#selectAll").click(function () { 43 $(".checkPhoto input[type=checkbox]"). attr('checked', true);43 $(".checkPhoto input[type=checkbox]").prop('checked', true); 44 44 checkSelectedRows(); 45 45 return false; … … 47 47 48 48 $("#selectNone").click(function () { 49 $(".checkPhoto input[type=checkbox]"). attr('checked', false);49 $(".checkPhoto input[type=checkbox]").prop('checked', false); 50 50 checkSelectedRows(); 51 51 return false; … … 54 54 $("#selectInvert").click(function () { 55 55 $(".checkPhoto input[type=checkbox]").each(function() { 56 $(this).attr('checked', !$(this).is(':checked'));56 jQuery(this).prop('checked', !jQuery(this).prop('checked')); 57 57 }); 58 58 checkSelectedRows();
Note: See TracChangeset
for help on using the changeset viewer.