fancy-index icon indicating copy to clipboard operation
fancy-index copied to clipboard

search not working due no indexcolname class

Open peterdd opened this issue 5 years ago • 0 comments

On a shared server mod_autoindex does not put the classes into the th and td tags.

So no class indexcolname:

const nameColumns = Array.from(document.querySelectorAll('tbody .indexcolname'));

My workaround for current fancy-index:

const nameColumns = Array.from(document.querySelectorAll('tbody td:nth-child(1)'));

peterdd avatar Nov 14 '19 15:11 peterdd