mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-21 22:54:44 +00:00
e vs event. Fixed.
This commit is contained in:
parent
521b8e5eb7
commit
cf700ecfc1
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue