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
They are currently documented, but #15037 will change that to tabs, which do work.
Unless they are to be fixed, there is dead code in the static main.js to make them work. Search on e.which (assuming #15037 goes through, otherwise, search on e.keyCode) to find the dead code.
The text was updated successfully, but these errors were encountered:
Continuing from #15012, this makes four changes to the `rustdoc` static files.
- Change the placeholder text of the search bar to `Click or press 'S' to search, '?' for more options...` to make keyboard hotkeys more apparent (capitalizing the `S` to match the help text).
- Change the `main.js` file to use browser-normalized key codes (`e.which`, from `jQuery`), instead of `e.keyCode`.
- Change the key code for `?` to be the correct `191` instead of `188`, so that the hotkey works to bring up search information.
- Change the search information to display `tab` and `shift+tab` instead of `up` and `down`, as those do not yet work outside of Firefox (see #15011). Also, adjust the height so it does not cut off the help text.
<s>I've also opened up #15038 about the non-functional `up` and `down` functionality, although this does nothing to fix it.</s>
They are currently documented, but #15037 will change that to tabs, which do work.
Unless they are to be fixed, there is dead code in the static
main.js
to make them work. Search one.which
(assuming #15037 goes through, otherwise, search one.keyCode
) to find the dead code.The text was updated successfully, but these errors were encountered: