umulmrum / myArmy

GNU Affero General Public License v3.0
2 stars 1 forks source link

Support mobile Internet Explorer #6

Open umulmrum opened 10 years ago

umulmrum commented 10 years ago

Mobile Internet Explorer uses pointer events instead of touch events. Therefore clicking does not currently work.

This issue should be fixed by someone with a Windows Phone device (there seems to be no free emulation software which covers pointer events?).

See this document: http://blogs.windows.com/buildingapps/2012/11/15/adapting-your-webkit-optimized-site-for-internet-explorer-10/

In init.js there is some code commented out on this issue which didn't work.

umulmrum commented 10 years ago

Just did another quick research. It seems that updated versions of mobile IE support touch events: http://blogs.msdn.com/b/ie/archive/2014/07/31/the-mobile-web-should-just-work-for-everyone.aspx

So it might be sufficient to enable touch events --> try this first (check if the user agent "iemobile" is determined correctly and enable touch support for it).

umulmrum commented 10 years ago

Activated touch events for IE mobile, but can't check if it works - comments welcome :-)