Continuing the discussion from Headers and footers hiding content?:
I’m having an issue with the has-footer class - I’ve applied it to an ion-content element, but for some reason it’s being removed.
I’ve applied it manually because I’ve got a footer added inside the view - something like (in my view template):
<ion-view view-title="...">
<ion-content class="has-footer" scroll="true">
... Page content
</ion-content>
<ion-footer-bar>
... Page specific footer
</ion-footer-bar>
<ion-view>
This is a problem, because the footer then overlays my content. Any idea why has-footer s being removed? Or how to make it not?