Change type of catalog_search box from 'search' to 'text' for css reasons

This commit is contained in:
Michael Walker 2015-03-27 14:07:15 +00:00
parent ca5081533a
commit ba7b5edcdf

View File

@ -16,7 +16,7 @@ var catalogSearch = function() {
var $controls = $('.controls'),
$threads = $('.threads .thread'),
$searchLabel = $('<label for="catalog_search">Search: </label>'),
$searchBox = $('<input id="catalog_search" type="search" placeholder="Search" />');
$searchBox = $('<input id="catalog_search" type="text" placeholder="Search" />');
$controls.append($searchLabel)
.append($searchBox);