Whitespace tweaks.

This commit is contained in:
George Stephanis 2015-08-08 10:57:22 -04:00
parent 9946bd1c5c
commit 7c5d05d29d
1 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
var rowTemplate = wp.template( 'wc-tax-table-row' ), var rowTemplate = wp.template( 'wc-tax-table-row' ),
paginationTemplate = wp.template( 'wc-tax-table-pagination' ), paginationTemplate = wp.template( 'wc-tax-table-pagination' ),
$tbody = $('#rates' ), $tbody = $( '#rates' ),
$pagination = $( '#rates-pagination' ); $pagination = $( '#rates-pagination' );
/** /**
@ -22,7 +22,7 @@
// Populate $tbody with the current page of results. // Populate $tbody with the current page of results.
$.each( rates, function ( id, rowData ) { $.each( rates, function ( id, rowData ) {
$tbody.append( rowTemplate( rowData ) ); $tbody.append( rowTemplate( rowData ) );
} ); });
// Initialize autocomplete for countries. // Initialize autocomplete for countries.
$tbody.find( 'td.country input' ).autocomplete({ $tbody.find( 'td.country input' ).autocomplete({