bsmeding wrote:Whow this looks very nice!
Just installed and running lika a charm on desktop, only when running in Ipad in installed on the home screen, then the dashboard is loaded only when clicking other menu items it will redirect to safari
does anyone know how to solve this? so all the pages can be opened within the home screen app?
This is fixed by adding the following code : then the onclick function on ipad will loading in same window instead of opening safari when de dashboard is running from the Homescreen as 'native' app
Code: Select all
var a=document.getElementsByTagName("a");
for(var i=0;i<a.length;i++)
{
a[i].onclick=function()
{
window.location=this.getAttribute("href");
return false
}
}