Skip to content

Commit

Permalink
Update plugin-manager-ui.js
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Sep 6, 2022
1 parent 153f744 commit 2b2d85b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions war/src/main/js/plugin-manager-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ function applyFilter(searchQuery) {
var selectedPlugins = [];

var filterInput = document.getElementById("filter-box");
filterInput.parentElement.classList.remove(
"app-plugin-manager__search--loading"
);
filterInput.parentElement.classList.remove("jenkins-search--loading");

function clearOldResults() {
if (!admin) {
Expand Down Expand Up @@ -62,9 +60,7 @@ document.addEventListener("DOMContentLoaded", function () {
var filterInput = document.getElementById("filter-box");
filterInput.addEventListener("input", function (e) {
debouncedFilter(e);
filterInput.parentElement.classList.add(
"app-plugin-manager__search--loading"
);
filterInput.parentElement.classList.add("jenkins-search--loading");
});

filterInput.focus();
Expand Down

0 comments on commit 2b2d85b

Please sign in to comment.