Files
notifications-admin/app/assets/javascripts/sortAlphanumeric.js

15 lines
550 B
JavaScript
Raw Normal View History

2024-07-23 12:01:40 -07:00
(function (window) {
// document.addEventListener("DOMContentLoaded", function() {
// const rows = document.querySelectorAll('td.table-field.file-name');
// rows.forEach(row => {
// let sortValue = row.getAttribute('data-sort-value');
// if (sortValue) {
// // Remove non-numeric characters to ensure numerical comparison
// sortValue = sortValue.replace(/\D/g, '');
// row.setAttribute('data-sort-value', sortValue);
// }
// });
// });
})(window);