e vs event. Fixed.

This commit is contained in:
scottjehl 2010-10-22 18:59:14 -04:00
parent 521b8e5eb7
commit cf700ecfc1

View file

@ -111,7 +111,7 @@ jQuery.widget( "mobile.listview", jQuery.mobile.widget, {
// tapping the whole LI triggers ajaxClick on the first link
$list.delegate( "li", "tap", function(event) {
if ( !jQuery( e.target ).closest( "a" ).length ) {
if ( !jQuery( event.target ).closest( "a" ).length ) {
jQuery( this ).find( "a" ).first().trigger( "click" );
return false;
}