We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40faba5 commit 1f8b8dbCopy full SHA for 1f8b8db
assets/js/main.js
@@ -8,11 +8,13 @@ $(function(){
8
9
function setup_tables() {
10
$('.pod-table').each(function() {
11
+ console.log( $(this).find('thead th:first-child' );
12
+ console.log( $(this).find('thead th:first-child + th');
13
if ($(this).find('thead').length
14
&& $(this).find('tr').length > 10
15
&& ! ( // don't sort operators precedence table
- $(this).find('thead th:first-child' ).text() == 'A'
- && $(this).find('thead th:first-child + th').text() == 'Level'
16
+ $(this).find('thead th:first-child' ).text() == 'Precedence Level'
17
+ && $(this).find('thead th:first-child + th').text() == 'Associativity'
18
)) $(this).tablesorter({sortList: [[0,0]]})
19
})
20
}
0 commit comments