Open
Description
I am use custom notification and footer tabs at same page(wether default page or not get same bug).
And then tab buttons have no response for change tab (but swipe work fine).
After debug with Chrome Inspect, I find out even notification was hide,
It still keep some height from bottom and cover on footer tabs.
After tried z-index to notification , nav , tab-items , tab-item
My final solution is
deviceReady{
document.querySelector('#notification_id').style.height="0px";
}
document.querySelector('#notification_id').style.height="";
phonon.notif('#notification_id').show();
document.querySelector('#notification_id').style.height="0px";
phonon.notif('#notification_id').hide();
Dirty but it works fine.