Fix binary search message

This commit is contained in:
Andrea Cardaci 2018-05-29 21:39:49 +02:00
parent a7685cbe9e
commit feae2cd8d7

View File

@ -52,7 +52,7 @@
// update the search message visibility
var searchMessage = document.getElementById('search-message');
searchMessage.style.display = noResults ? 'initial' : 'none';
searchMessage.style.display = noResults ? 'table-cell' : 'none';
}
(function () {