Searching the proceedings page with Ctrl/Cmd+F (browser's Find feature) brings mostly results where nothing seems to be found (no highlighted text).
This makes the search-ability issues of NIME proceedings even worse than discussed in #4. The empty results appear because all abstracts and BibTex are included in the page's DOM even when they are not visible. The code responsible for this behaviour is the following:
https://github.com/NIME-conference/nime-website/blob/a9f742607639767b556e770b4e9e170fb13f0cf0/assets/styles.scss#L55-L64
Making the max-height of abstracts and BibTex containers zero hides them but they are still searchable.
Using display for hiding fixes the issue.
Searching the proceedings page with
Ctrl/Cmd+F
(browser's Find feature) brings mostly results where nothing seems to be found (no highlighted text). This makes the search-ability issues of NIME proceedings even worse than discussed in #4. The empty results appear because all abstracts and BibTex are included in the page's DOM even when they are not visible. The code responsible for this behaviour is the following: https://github.com/NIME-conference/nime-website/blob/a9f742607639767b556e770b4e9e170fb13f0cf0/assets/styles.scss#L55-L64 Making themax-height
of abstracts and BibTex containers zero hides them but they are still searchable. Usingdisplay
for hiding fixes the issue.