What steps will reproduce the problem?
1. Open in Internet Explorer using Filter implementation.
2.
3.
What is the expected output? What do you see instead?
I did not expect an error.
What version of the product are you using? On what operating system?
jQuery FN Google Map 3.0-beta
Please provide any additional information below.
I've been able to get it to work by replacing line 176. Using the
jQuery.inArray method instead.
c(d[e], (( b.delimiter && d[e][b.property] ) ? (
d[e][b.property].split(b.delimiter).indexOf(b.value) > -1 ) : (
d[e][b.property] === b.value )));
With this
c(d[e], (( b.delimiter && d[e][b.property] ) ? ( jQuery.inArray(b.value,
d[e][b.property].split(b.delimiter)) > -1 ) : ( d[e][b.property] === b.value
)));
I have also notice line 189 uses indexOf as well, although it has not cause an
error for me yet.
Original issue reported on code.google.com by bhuskil...@gmail.com on 9 Feb 2012 at 6:09
Original issue reported on code.google.com by
bhuskil...@gmail.com
on 9 Feb 2012 at 6:09