Cannot find angular.js

Keywords John Papa HotTowel can’t find angular.js

Been running down bugs on a few pluralsight tutorials.

WEBAPI with Jesse liberty, this leads into Hot Towel.  THe demo was great. I was just applying it towards a different set of data so sometimes I run into issues;

 

Fix: add src to angular.js

<script src=”scripts/angular.js”></script>

app.run([‘$route’, function ($route) {
breeze.core.extendQ($rootScope, $q);
routemediator.setRoutingHandlers();
// Include $route to kick start the router.
}]);

<link href=”content/breeze.directives.css” rel=”stylesheet” />

<script src=”scripts/breeze.debug.js”></script>
<script src=”scripts/breeze.angular.js”></script>
<script src=”scripts/angular.js”></script>
<script src=”scripts/breeze.saveErrorExtensions.js”></script>
<script src=”scripts/breeze.directives.js”></script>
<script src=”scripts/breeze.to$q.shim.js”></script> <!– Needed only if you are using to$q –>

Share on Facebook

Leave a Reply

Your email address will not be published.