I may be doing something wrong here - and probably am - but when my app loads, the content within the <ion-side-menu>
appears briefly before loading the actual app. Maybe this is just an issue with content in the index.html. My index.html as follows:
<body ng-controller="AppCtrl">
<ion-side-menus>
<!-- Center content -->
<ion-side-menu-content>
<ion-nav-bar class="bar-assertive nav-title-slide-ios7">
<ion-nav-back-button class="button-icon icon ion-ios7-arrow-back"></ion-nav-back-button>
</ion-nav-bar>
<ion-nav-view></ion-nav-view>
</ion-side-menu-content>
<!-- Left menu -->
<ion-side-menu side="left">
<ion-header-bar class="bar-dark">
<div class="buttons">
<button class="button button-icon icon ion-ios7-gear-outline"></button>
</div>
<h1 class="title">robus</h1>
</ion-header-bar>
<ion-content>
<ion-list>
<ion-item href="" ui-sref="workouts" menu-close>
<strong>Workouts</strong>
</ion-item>
<ion-item href="" ui-sref="logs" menu-close>
<strong>Logs & Statistics</strong>
</ion-item>
<ion-item href="" ui-sref="logs" menu-close>
<strong class="assertive">Logout</strong>
</ion-item>
</ion-list>
</ion-content>
</ion-side-menu>
</ion-side-menus>
</body>
Am I structuring this incorrectly? Simple left menu with some content in the middle.
Anyone else seeing this issue?