At ajax search follow this steps:
1) search for any game (make sure game exists on arcade)
2) the results will show
3) now delete the text of search field and see the dots gif still visible all time after you clear the field.
Here is my solution for this small fault. Edit the template arcade_ajaxsearch and replace that function bellow:
Code:
function gamesearch(searchstring)
{
clearTimeout(asearch);
if (searchstring.length >= $vboptions[mingsearchlength])
{
searching();
delaystring = "arcadesearch('" + searchstring + "');";
asearch = setTimeout(delaystring, $vboptions[ajaxsearchdelay]);
}
else
{
document.getElementById('searchtable').innerHTML = '';
nowsearching = 0;
}
}