Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread Mobile Friendly
Tue, Sep 9 2014 4:12 PMPermanent Link

Walter Matte

Tactical Business Corporation

What needs to be done/ or have you done, to make an EWB web app mobile friendly?

Walter
Wed, Sep 10 2014 4:50 AMPermanent Link

Matthew Jones

Walter Matte wrote:

> make an EWB web app mobile friendly?

Nothing much really, other than be responsive in the OnResize events
(you can detect desktop size change with code posted previously, for
rotation).

EWB doesn't yet support touch, so you have to use taps for everything
(cannot yet drag). EWB 2 is supposed to fix this I think.

Android doesn't have text box change events, so you have to use a timer
for that.

You might like to adjust the viewport a bit. This is my HTML patch
strings:

   HTML_INSERT1 = '<title>APP NAME</title><meta
name="apple-mobile-web-app-capable" content="yes"><link
rel="apple-touch-icon" href="app-57.png">';
   HTML_INSERT2 = '<meta name="viewport" content="user-scalable=no,
width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1,
minimal-ui">';

The icon allows a user to add the page to their home screen and you to
choose the icon.

You can easily PhoneGap an application too.

--

Matthew Jones
Image