Skip to content

Commit 97d13a8

Browse files
Fix not working lint anchor
1 parent 5873cb9 commit 97d13a8

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

util/gh-pages/index_template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ <h1>Clippy Lints</h1> {# #}
150150
<h2 class="panel-title"> {# #}
151151
<div class="panel-title-name" id="lint-{{lint.id}}"> {# #}
152152
<span>{{lint.id}}</span> {#+ #}
153-
<a href="#{{lint.id}}" class="anchor label label-default" onclick="openLint(event)">&para;</a> {#+ #}
153+
<a href="#{{lint.id}}" class="anchor label label-default">&para;</a> {#+ #}
154154
<a href="" class="anchor label label-default" onclick="copyToClipboard(event)"> {# #}
155155
&#128203; {# #}
156156
</a> {# #}

util/gh-pages/script.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,6 @@ function expandLint(lintId) {
151151
highlightIfNeeded(lintId);
152152
}
153153

154-
// Show details for one lint
155-
function openLint(event) {
156-
event.preventDefault();
157-
event.stopPropagation();
158-
expandLint(event.target.getAttribute("href").slice(1));
159-
}
160-
161154
function copyToClipboard(event) {
162155
event.preventDefault();
163156
event.stopPropagation();

0 commit comments

Comments
 (0)