557
edits
No edit summary |
No edit summary Tag: Reverted |
||
| Line 5: | Line 5: | ||
console.log('Initializing simple mobile sorting...'); | console.log('Initializing simple mobile sorting...'); | ||
// | // Apply custom table sorting on both mobile and desktop | ||
console.log('Applying custom table sorting for all devices'); | |||
var tables = document.querySelectorAll('.wikitable, table.sortable'); | |||
console.log('Found tables:', tables.length); | |||
$(tables).each(function(index, table) { | |||
setupTableSorting($(table), index); | |||
}); | |||
} | } | ||