turn.js not working for chrome and firefox windows 10 desktop
Hi,
we are doing one project using turn.js .but when we checked our project on windows 10, it will not working on chrome and firefox.only worked on edge.can you plz solve this?
use bubblin.io instead. they support all platforms and responsive books.
yea but there's no source code :/
there is http://bookiza.io
https://github.com/blasten/turn.js/issues/399
This might help for your case.
Even Tuenjs.com site is also not working on Chrome browser with Window 10 OS. [Version 67.0.3396.99 (Official Build) (64-bit). Open turnjs.com in Chrome and try to open Steve Job’s book. It does nothing.
Any solution available for this problem?
I have one solution which may help you people.
Open your turn.js file and there you just change isTouch to false like isTouch=false at line 26.
Open your turn.js file and there you just change isTouch to false like isTouch=false at line 26.
elaborating nibhatt9's solution above, you might try this instead:
change isTouch = 'ontouchstart' in window,
into isTouch = !(window.screenX != 0) && ('ontouchstart' in window || 'onmsgesturechange' in window),
at line 26 of turn.js