We are in the process of transitioning our mobile html5 code from Angular.js to the Ionic framework. This involves updating numerous functions that previously called angular.js directly.
While Ionic offers a bundled version that combines Angular and Ionic, we have chosen not to use it.
According to the Ionic CDN documentation at , it is possible to break down the bundle into separate files.
Unfortunately, I have been unsuccessful in getting this to work. I attempted this on an Ionic codepen demo at http://codepen.io/ionic/pen/tfAzj
Specifically, I tried replacing:
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
with:
<script src="//code.ionicframework.com/1.3.1/js/ionic-angular.js"></script>
<script src="//code.ionicframework.com/1.3.1/js/ionic.js"></script>
Can anyone provide guidance on how to fix this issue? Thank you.