You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment it is not possible to resize the side-nav/tree-nav of the RIOT-doxygen website in Firefox (might apply to other browsers). When the tree is expanded this makes reading it a bit cumbersome.
being called even when resizing the side-nav not only the window. Line 64 then always resets the width. Adding if ($(window).width() == window_before) {return;} to the beginning of resize_handler fixes that.
Is the side-nav not being resizable a deliberate decision or a bug (in which case I would like to fix it)?
Description
At the moment it is not possible to resize the side-nav/tree-nav of the RIOT-doxygen website in Firefox (might apply to other browsers). When the tree is expanded this makes reading it a bit cumbersome.
This is caused by
RIOT/doc/doxygen/src/js/riot-doxy.js
Line 47 in 543c62f
64
then always resets the width. Addingif ($(window).width() == window_before) {return;}
to the beginning ofresize_handler
fixes that.Is the side-nav not being resizable a deliberate decision or a bug (in which case I would like to fix it)?
Steps to reproduce the issue
Open https://doc.riot-os.org/ and try to resize the side-nav on the left (using firefox)
Expected results
Side-nav resizes accordingly
Actual results
Side-nav remains in the same width
The text was updated successfully, but these errors were encountered: