Skip to content

Commit

Permalink
[SearchBarDropDown] Fix references to functions
Browse files Browse the repository at this point in the history
  • Loading branch information
dchege711 committed Apr 14, 2024
1 parent f82967b commit 0312257
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/partials/search_bar_dropdown.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
<div class="dropdown">
<input type="text" id="card_search_input"
placeholder="Search card descriptions and titles. Press [Enter] to view all results"
onkeydown="searchCards(event)" class="dropbtn" onblur="window.setTimeout(clearSearchResults, 300);" />
onkeydown="SearchBarDropDown.searchCards(event)" class="dropbtn"
onblur="window.setTimeout(SearchBarDropDown.clearSearchResults, 300);" />
<div class="dropdown-content" id="card_search_results"></div>
</div>
<script type="text/javascript" src="src/SearchBarDropDown.bundle.min.js"></script>

0 comments on commit 0312257

Please sign in to comment.