ASKBOT / askbot-devel

Askbot is a Django/Python Q&A forum. **Contributors README**: https://github.com/ASKBOT/askbot-devel#how-to-contribute. Commercial hosting of Askbot and support are available at https://askbot.com
Other
1.56k stars 627 forks source link

Fix attribute name for active class in init_page.js #941

Open matthewbbrandt opened 5 months ago

matthewbbrandt commented 5 months ago

When adding styles to a sort nav, the active nav element can be selected using .components--sort-nav a[className="js-selected"]. However, it seems the intention is to make a class attribute so that the active element can be selected with .components--sort-nav a.js-selected.

Other notes