diff options
Diffstat (limited to 'src/js/_enqueues/admin/inline-edit-tax.js')
-rw-r--r-- | src/js/_enqueues/admin/inline-edit-tax.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/js/_enqueues/admin/inline-edit-tax.js b/src/js/_enqueues/admin/inline-edit-tax.js index dcaa8d2bdc..5a3cad885c 100644 --- a/src/js/_enqueues/admin/inline-edit-tax.js +++ b/src/js/_enqueues/admin/inline-edit-tax.js @@ -43,12 +43,12 @@ window.inlineEditTax = { }); /** - * Cancels inline editing when pressing escape inside the inline editor. + * Cancels inline editing when pressing Escape inside the inline editor. * * @param {Object} e The keyup event that has been triggered. */ row.keyup( function( e ) { - // 27 = [escape] + // 27 = [Escape]. if ( e.which === 27 ) { return inlineEditTax.revert(); } @@ -69,10 +69,10 @@ window.inlineEditTax = { }); /** - * Saves the inline edits when pressing enter inside the inline editor. + * Saves the inline edits when pressing Enter inside the inline editor. */ $( 'input, select', row ).keydown( function( e ) { - // 13 = [enter] + // 13 = [Enter]. if ( e.which === 13 ) { return inlineEditTax.save( this ); } @@ -184,7 +184,7 @@ window.inlineEditTax = { fields = $('#edit-'+id).find(':input').serialize(); params = fields + '&' + $.param(params); - // Do the ajax request to save the data to the server. + // Do the Ajax request to save the data to the server. $.post( ajaxurl, params, /** * Handles the response from the server |