harvesthq / Sidetap

Sidetap is a simple framework that allows you to quickly build platform-independent mobile web interfaces.
http://harvesthq.github.io/Sidetap/
Other
613 stars 112 forks source link

Side fail on Safari 6.1 #17

Open jspaper opened 10 years ago

jspaper commented 10 years ago

sidetap will return SidetapStandard instance on Safari 6.1, maybe ios7 have the same problem.

I change the conditiion on ios5 and everything works well. Is there any comments why ShardWorker have to support?

before

ios5 = window.SharedWorker && navigator.userAgent.match(/^((?!android).)*webkit.*$/i);

after

ios5 =  navigator.userAgent.match(/^((?!android).)*webkit.*$/i);