Reputation: 2526
I used this line of code in my web app to add icon:
<link rel="apple-touch-icon" href="images/ipadicon.png" />
but iOS added glare (glass) on icon automatically, and I don't want this.
I know that I can say to iOS for my native app that I don't want glass, but I dont figure out how to do that for web app.
Upvotes: 7
Views: 2341
Reputation: 724572
Change the rel
to say apple-touch-icon-precomposed
:
<link rel="apple-touch-icon-precomposed" href="images/ipadicon.png" />
Upvotes: 14