Skip to content

Commit

Permalink
Dev: Looking at what is involved for using Cash as a jQuery replacement
Browse files Browse the repository at this point in the history
fabiospampinato/cash#356

Sync to source repo @4e057f02a6f06f6e04bfd9b5a0d63c8281b1a597
  • Loading branch information
AllanJard committed Sep 15, 2020
1 parent 7907983 commit 76502a6
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 61 deletions.
2 changes: 1 addition & 1 deletion datatables.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"js/jquery.dataTables.min.js"
],
"src-repo": "http://github.com/DataTables/DataTablesSrc",
"last-sync": "bfed98dfc77da69c764a98244cb04b2121359d67",
"last-sync": "4e057f02a6f06f6e04bfd9b5a0d63c8281b1a597",
"last-tag": "1.10.21"
}
6 changes: 3 additions & 3 deletions js/jquery.dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -3279,11 +3279,11 @@
}

/* ARIA role for the rows */
$(thead).find('>tr').attr('role', 'row');
$(thead).children('tr').attr('role', 'row');

/* Deal with the footer - add classes if required */
$(thead).find('>tr>th, >tr>td').addClass( classes.sHeaderTH );
$(tfoot).find('>tr>th, >tr>td').addClass( classes.sFooterTH );
$(thead).children('tr').children('th, td').addClass( classes.sHeaderTH );
$(tfoot).children('tr').children('th, td').addClass( classes.sFooterTH );

// Cache the footer cells. Note that we only take the cells from the first
// row in the footer. If there is more than one row the user wants to
Expand Down
Loading

0 comments on commit 76502a6

Please sign in to comment.