Skip to content

Commit

Permalink
change function declaration formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tbroadley committed Oct 3, 2016
1 parent b63e4b6 commit 1c6202b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/angular-tablesort.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ tableSortModule.directive('tsWrapper', ['$parse', '$compile', function( $parse,
return filteredArr;
};

function defaultSort(a, b) {
function defaultSort( a, b ) {
if (a > b) {
return 1;
} else if (a === b) {
Expand Down

0 comments on commit 1c6202b

Please sign in to comment.