This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Angular Service for authentication | |
| * | |
| * @params none | |
| * | |
| * @returns none | |
| */ | |
| AuthService.$inject = ['$location', 'ExceptionService']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Angular service for working with the edmunds api | |
| * | |
| * How to use: | |
| * 1. Include in controller | |
| * 2. $scope.vehicle = EdmundsService.vehicle | |
| * 3. Put a watcher on $scope.vehicle and send the new value to EdmundsService.updateVehicle(vehicle) | |
| * 4. Check edmundsConfig and constants. Adjust as necessary. | |
| * | |
| * @params $http, ExceptionService |
NewerOlder