Response title
This is preview!




function emobile_aClick
$(document).bind('scrollstop', function(e){
e.stopPropagation();
e.stopImmediatePropagation();
scrollInProgress = false;
});
$(document).bind('scrollstart', function(e){
e.stopPropagation();
e.stopImmediatePropagation();
scrollInProgress = true;
});
$('a.ui-link-inherit, a.ui-btn, a.ui-link').live(eventTouch, function(e){...
and maybe some of this...
var eventTouch = 'click';
var clickInProgress = false;
var ItinInProgress = false;
/**********************
* End Global Vars
**********************/
/*********************
* Halt defaults
*********************/
$('a').die();
$('li').die();
$('.ui-btn').die();
$('form').die();
/* Fix for slow tap on iOS devices*/
if($.support.touch){
eventTouch = 'tap';
$('a.ui-link-inherit, a.ui-btn, a.ui-link').live('click', function(e){
$(this).tap();
e.stopPropagation();
e.preventDefault();
e.stopImmediatePropagation();
return false;
});
} // end slow tap fix
Hope this helps.
-Alex
This project has amazing promise and currently already has amazing features. This sluggishness should be a high priority bug by now.
© 2012 jQuery Foundation
Sponsored by
and others.
