Making your widget iPhone compatible
Comments
One of the wonderful thing about mobile widgets is that they can also work on the iPhone.
Just add these lines to the <head> of your index.html file:
<meta name=”viewport” content=”initial-scale=1,
maximum-scale=1, minimum-scale=1 user-scalable=no,
width = 320″ />
<meta name=”viewport” content=”width=device-width;
initial-scale=1.2; maximum-scale=1.2; user-scalable=0;” />
<meta name=”apple-mobile-web-app-capable” content=”yes” />
<meta names=”apple-mobile-web-app-status-bar-style”
content=”black-translucent” />
They tell the iPhone how to render the page, what level of [...]
Read more
