jquery-mobile/experiments/photos/photos.js

21 lines
393 B
JavaScript

$('.photoview')
.live('pagebeforehide',function(){
$.fixedToolbars.hide(true);
})
.live('pageshow',function(){
$.fixedToolbars.show();
})
.live('swipeleft',function(){
$(this).find('a.next').click();
})
.live('swiperight',function(){
$(this).next().find('a.prev').click();
});
$('.photoview img').live('mousedown touchstart',function(event){
event.preventDefault();
})