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: 0 additions & 4 deletions modules/custom-status/lib/custom-status-configure.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ inlineEditCustomStatus = {
$('a.cancel', row).on( 'click', function() { return inlineEditCustomStatus.revert(); });
$('a.save', row).on( 'click', function() { return inlineEditCustomStatus.save(this); });
$('input, select', row).on( 'keydown', function(e) { if(e.which == 13) return inlineEditCustomStatus.save(this); });

$('#posts-filter input[type="submit"]').on( 'mousedown', function(e){
t.revert();
});
},

toggle : function(el) {
Expand Down
2 changes: 1 addition & 1 deletion modules/editorial-metadata/editorial-metadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ function print_configure_view() {
<?php if ( !isset( $_GET['action'] ) || ( isset( $_GET['action'] ) && $_GET['action'] != 'edit-term' ) ): ?>
<div id="col-right">
<div class="col-wrap">
<form id="posts-filter" action="" method="post">
<form action="" method="post">
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<?php $wp_list_table->display(); ?>
<?php wp_nonce_field( 'editorial-metadata-sortable', 'editorial-metadata-sortable' ); ?>
</form>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ inlineEditMetadataTerm = {
$('a.cancel', row).on( 'click', function() { return inlineEditMetadataTerm.revert(); });
$('a.save', row).on( 'click', function() { return inlineEditMetadataTerm.save(this); });
$('input, select', row).on( 'keydown', function(e) { if(e.which == 13) return inlineEditMetadataTerm.save(this); });

$('#posts-filter input[type="submit"]').on( 'mousedown', function(e){
t.revert();
});
},

toggle : function(el) {
Expand Down
4 changes: 0 additions & 4 deletions modules/user-groups/lib/user-groups-configure.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ inlineEditUsergroup = {
$('a.cancel', row).on( 'click', function() { return inlineEditUsergroup.revert(); });
$('a.save', row).on( 'click', function() { return inlineEditUsergroup.save(this); });
$('input, select', row).on( 'keydown', function(e) { if(e.which == 13) return inlineEditUsergroup.save(this); });

$('#posts-filter input[type="submit"]').on( 'mousedown', function(e){
t.revert();
});
},

toggle : function(el) {
Expand Down