diff --git a/chirp/public/javascripts/chirpApp.js b/chirp/public/javascripts/chirpApp.js index 6b6c747..857aa20 100644 --- a/chirp/public/javascripts/chirpApp.js +++ b/chirp/public/javascripts/chirpApp.js @@ -1,4 +1,4 @@ -var app = angular.module('chirpApp', ['ngRoute', 'ngResource']).run(function($rootScope) { +var app = angular.module('chirpApp', ['ngRoute', 'ngResource']).run(function($rootScope, $http) { $rootScope.authenticated = false; $rootScope.current_user = ''; @@ -75,4 +75,4 @@ app.controller('authController', function($scope, $http, $rootScope, $location){ } }); }; -}); \ No newline at end of file +});