mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-29 10:24:45 +00:00
Fixed typo in my last checkin for converting tap to virtual mouse events. It was preventing tap from actually firing so things like the cancel button link in a search textfield was being followed.
This commit is contained in:
parent
b00d05b81c
commit
b0a667ae44
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ $.event.special.tap = {
|
|||
/* ONLY trigger a 'tap' event if the start target is
|
||||
* the same as the stop target.
|
||||
*/
|
||||
if ( !origTarget == event.target ) {
|
||||
if ( origTarget == event.target ) {
|
||||
triggerCustomEvent( thisObject, "tap", event );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue