I created a Modal view inline in my index.html file, and it works well with a nice slide-up display. So far, so good.
Then I moved the modal view into a separate file, and used a div include in the index.html file to reference it. The modal still appears, but not with the slide-up animation.
What can I do to keep my code organized with a separate modal file, without losing that animation?
Here is what the code looks like now (with no animation) in my index.html file:
<body ng-app="your_app_name">
<ion-nav-view></ion-nav-view>
<script id="modal-script.html" type="text/ng-template">
<div ng-include="'views/modal.html'"></div>
</script>
</body>