Changeset 59414
- Timestamp:
- 11/18/2024 07:31:45 PM (13 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/admin/post.js
r59188 r59414 660 660 function() { 661 661 var t = $(this), c = t.is(':checked'), id = t.val(); 662 if ( id && t.parents('#taxonomy-'+taxonomy).length ) 663 $('#in-' + taxonomy + '-' + id + ', #in-popular-' + taxonomy + '-' + id).prop( 'checked', c ); 662 if ( id && t.parents('#taxonomy-'+taxonomy).length ) { 663 $('input[id^="in-' + taxonomy + '-' + id + '"]').prop('checked', c); 664 $('input#in-popular-' + taxonomy + '-' + id).prop('checked', c); 665 } 664 666 } 665 667 );
Note: See TracChangeset
for help on using the changeset viewer.