Skip to content

Commit 9ac57b1

Browse files
authored
Rollup merge of #82807 - notriddle:cleanup-js, r=jyn514
rustdoc: Remove redundant enableSearchInput function enableSearchInput was called from two places: - setupSearchLoader - addSearchOptions, which is itself called from setupSearchLoader only This commit can safely get rid of the addSearchOptions calls entirely, and since the setupSearchLoader call is immediately preceded by other method calls on search_input, there's no need to check if it's set.
2 parents 759204f + 28135b7 commit 9ac57b1

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

src/librustdoc/html/static/main.js

+2-10
Original file line numberDiff line numberDiff line change
@@ -2188,7 +2188,7 @@ function defocusSearchBar() {
21882188
return "+";
21892189
}
21902190
// button will collapse the section
2191-
// note that this text is also set in the HTML template in render.rs
2191+
// note that this text is also set in the HTML template in ../render/mod.rs
21922192
return "\u2212"; // "\u2212" is "−" minus sign
21932193
}
21942194

@@ -2831,17 +2831,10 @@ function defocusSearchBar() {
28312831
});
28322832
}
28332833

2834-
function enableSearchInput() {
2835-
if (search_input) {
2836-
search_input.removeAttribute('disabled');
2837-
}
2838-
}
2839-
28402834
function addSearchOptions(crates) {
28412835
var elem = document.getElementById("crate-search");
28422836

28432837
if (!elem) {
2844-
enableSearchInput();
28452838
return;
28462839
}
28472840
var savedCrate = getSettingValue("saved-filter-crate");
@@ -2860,7 +2853,6 @@ function defocusSearchBar() {
28602853
elem.value = savedCrate;
28612854
}
28622855
}
2863-
enableSearchInput();
28642856
};
28652857

28662858
function buildHelperPopup() {
@@ -2952,7 +2944,7 @@ function defocusSearchBar() {
29522944
search_input.addEventListener("blur", function() {
29532945
search_input.placeholder = search_input.origPlaceholder;
29542946
});
2955-
enableSearchInput();
2947+
search_input.removeAttribute('disabled');
29562948

29572949
var crateSearchDropDown = document.getElementById("crate-search");
29582950
crateSearchDropDown.addEventListener("focus", loadSearch);

0 commit comments

Comments
 (0)