[fix] fix the reset button in the oscar theme (#2306)

Rely on javascript instead of type="clear"

Close #2009
This commit is contained in:
GazoilKerozen 2020-11-30 16:30:21 +01:00 committed by GitHub
parent 4a36a3044d
commit 1b700738eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 49 additions and 5 deletions

View file

@ -21,6 +21,13 @@ $(document).ready(function(){
*/
$('#q.autofocus').focus();
/**
* Empty search bar when click on reset button
*/
$("#clear_search").click(function () {
document.getElementById("q").value = "";
});
/**
* select full content on click if class="select-all-on-click"
*/