Skip to content

Commit 98841d4

Browse files
committed
Fix misnamed variable in rustdoc
1 parent 5180a7c commit 98841d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/html/static/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
$(document).on("keypress", handleShortcut);
134134
$(document).on("keydown", handleShortcut);
135135
$(document).on("click", function(ev) {
136-
if (!$(e.target).closest("#help > div").length) {
136+
if (!$(ev.target).closest("#help > div").length) {
137137
$("#help").addClass("hidden");
138138
$("body").removeClass("blur");
139139
}

0 commit comments

Comments
 (0)