mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-21 06:40:59 +00:00
simplified tap binding to any list items that contain anchors
This commit is contained in:
parent
abef220bef
commit
87e8fcf9b5
1 changed files with 3 additions and 1 deletions
|
|
@ -157,9 +157,11 @@ $.fn.listview = function( options ) {
|
|||
.end()
|
||||
.find( "p,ul,dl" )
|
||||
.addClass( "ui-li-desc" );
|
||||
|
||||
|
||||
|
||||
//tapping the whole LI triggers ajaxClick on the first link
|
||||
$this.find( "li:not(.ui-li-grouping)" ).live( "tap", function() {
|
||||
$this.find( "li:has(a)" ).live( "tap", function() {
|
||||
$( this ).find( "a:first" ).ajaxClick();
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue