Make search work in Safari again

This commit is contained in:
Wesley Moore 2010-07-09 08:23:59 +10:00
parent a4610cc409
commit ff222c1cf2

View file

@ -10,7 +10,7 @@ jQuery(function() {
}
function refresh_search(elem) {
var input = elem || $(this); // Pass a jQuery object or use this
var input = $(elem);
var value = input.val() || "";
var q = value.toLowerCase();
@ -33,7 +33,7 @@ jQuery(function() {
if(input.get(0).hasOwnProperty('onsearch')) {
console.log("Using search event for search");
$('#search label').hide();
input.bind("search", refresh_search);
input.bind("search", function() { refresh_search(this) });
}
else {
// Poll the field for its value while it has focus