Changeset 5569 for trunk/admin/themes
- Timestamp:
- Apr 2, 2010, 11:50:45 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/themes/default/template/comments.tpl
r5381 r5569 2 2 <script> 3 3 $(document).ready(function(){ 4 $(".checkComment").click(function () { 5 var checkbox = $(this).children("input[type=checkbox]"); 6 $(checkbox).attr('checked', !$(checkbox).is(':checked')); 4 $(".checkComment").click(function(event) { 5 if (event.target.type !== 'checkbox') { 6 var checkbox = $(this).children("input[type=checkbox]"); 7 $(checkbox).attr('checked', !$(checkbox).is(':checked')); 8 } 7 9 }); 8 10
Note: See TracChangeset
for help on using the changeset viewer.