-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Move global click handlers to per-element ones. #85117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,7 +105,7 @@ crate fn render<T: Print, S: Print>( | |
placeholder=\"Click or press ‘S’ to search, ‘?’ for more options…\" \ | ||
type=\"search\">\ | ||
</div>\ | ||
<button type=\"button\" class=\"help-button\">?</button> | ||
<button type=\"button\" id=\"help-button\">?</button> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add this ID into There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When we generate IDs for anchors, we check this map to ensure that the ID doesn't already exists, otherwise, we add a |
||
<a id=\"settings-menu\" href=\"{root_path}settings.html\">\ | ||
<img src=\"{static_root_path}wheel{suffix}.svg\" \ | ||
width=\"18\" height=\"18\" \ | ||
|
Uh oh!
There was an error while loading. Please reload this page.