Skip to content

Commit

Permalink
Merge pull request #29 from gilhanan/master
Browse files Browse the repository at this point in the history
place all the script tags before the closing body
  • Loading branch information
leob committed Nov 30, 2015
2 parents bf3720c + 6b61816 commit 80e4ea2
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/index-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,15 @@
<!-- build:sass -->
<link href="css/ionic.app.css" rel="stylesheet">
<!-- endbuild -->
</head>

<!-- NOTE: "ng-strict-di" will be added to the body tag during a production build (see gulp.js) -->
<body ng-app="app" ng-controller="ApplicationCtrl as main"> <!-- ApplicationCtrl: global/default controller -->
<!--
The views will be rendered in the <ion-nav-view> directive below
-->
<ion-nav-view></ion-nav-view>

<!--
For DEV we can use ionic.bundle.js (non-minified) to debug moduleErr errors, see:
http://www.chrisgmyr.com/2014/08/debugging-uncaught-error-injectormodulerr-in-angularjs/
Expand Down Expand Up @@ -98,13 +106,6 @@

<!-- ANGULAR-TEMPLATECACHE -->
<script src="js/templates.js"></script>
</head>

<!-- NOTE: "ng-strict-di" will be added to the body tag during a production build (see gulp.js) -->
<body ng-app="app" ng-controller="ApplicationCtrl as main"> <!-- ApplicationCtrl: global/default controller -->
<!--
The views will be rendered in the <ion-nav-view> directive below
-->
<ion-nav-view></ion-nav-view>

</body>
</html>

0 comments on commit 80e4ea2

Please sign in to comment.