undo that last change for binding swiperight to ui-page with live. Namespaced unbinding didn't seem to work.

This commit is contained in:
scottjehl 2010-09-18 11:15:24 -04:00
parent 36dba04c6b
commit 37f16c3022

View file

@ -275,7 +275,7 @@
$html.addClass( $.event.special.orientationchange.orientation( $window ) );
//swipe right always triggers a back
$('.ui-page').live('swiperight.jqm',function(){
$body.bind('swiperight.jqm',function(){
history.go(-1);
return false;
});