
Originally Posted by
psilos
Is it a simple way to check if Safari and disable swipe effect?
Sorry for posting that here....
Now why didn't I think of that?
Yep, you can disable the swipe effect in Safari (until I get to fixing it) by editing the below line inside chrome.js:
Code:
if (this.enableswipe==1 && !/Safari/i.test(navigator.userAgent) ){
if (typeof this.swipetimer!="undefined")
clearTimeout(this.swipetimer)
obj.clip="rect(0 auto 0 0)" //hide menu via clipping
this.bottomclip=0
this.swipeeffect()
}
The code in red is new.
Bookmarks