diff --git a/index.html b/index.html index 4b764e8..2ee5511 100644 --- a/index.html +++ b/index.html @@ -217,9 +217,9 @@
// app/scripts/app.js
-angular.module('newProjectApp').config(function($locationProvider) {
+angular.module('newProjectApp').config(['$locationProvider', function($locationProvider) {
$locationProvider.html5Mode(true).hashPrefix('!');
-});
+}]);
The oauth directive works just straight when the HTML5 mode is active.
+ }]);