Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/js/_enqueues/admin/inline-edit-post.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ window.wp = window.wp || {};
*/
setBulk : function(){
var te = '', type = this.type, c = true;
var checkedPosts = $( 'tbody th.check-column input[type="checkbox"]:checked' );
var checkedPosts = $( 'tbody .check-column input[type="checkbox"]:checked' );
var categories = {};
this.revert();

Expand All @@ -207,7 +207,7 @@ window.wp = window.wp || {};
*
* Get the selected posts based on the checked checkboxes in the post table.
*/
$( 'tbody th.check-column input[type="checkbox"]' ).each( function() {
$( 'tbody .check-column input[type="checkbox"]' ).each( function() {

// If the checkbox for a post is selected, add the post to the edit list.
if ( $(this).prop('checked') ) {
Expand Down
1 change: 1 addition & 0 deletions src/wp-admin/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,7 @@ code {
border-bottom-width: 0;
}

.widefat th,
.widefat td {
vertical-align: top;
}
Expand Down
Loading