mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-04 20:54:46 +00:00
21 lines
393 B
JavaScript
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();
|
|
})
|
|
|
|
|
|
|