iOS web app icon without glare
ios, iphone, web-applications
Solution
Change the `rel` to say `apple-touch-icon-precomposed`:
<link rel="apple-touch-icon-precomposed" href="images/ipadicon.png" />
Problem
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.