Skip to content

Commit

Permalink
Using latest development Angular to test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcrites committed Sep 25, 2013
1 parent 8ab4b2b commit 01ff49f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<body>
<div ng-view>
<button ng-click=foo()>I am a button</button>
<script src=js/angular.js></script>
<script src=//code.angularjs.org/1.2.0-rc.2/angular.js></script>
<script src=//code.angularjs.org/1.2.0-rc.2/angular-route.js></script>
<script src=js/app.js></script>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ window.onpageshow = function (e) {
}
}

app = angular.module("locbreak", []);
app = angular.module("locbreak", ['ngRoute']);

app.config(function ($routeProvider) {
$routeProvider
Expand Down

0 comments on commit 01ff49f

Please sign in to comment.