Created
October 8, 2014 14:18
-
-
Save joncodo/1cac9c20d38c3cf9f744 to your computer and use it in GitHub Desktop.
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
$scope.saveResume = function () { | |
console.log('saved resume hit'); | |
if($scope.file_uploads.length !==0){ | |
$scope.profile.resume_url = $scope.file_uploads[0].url; | |
$http.post('/researcherUser/' + $scope.profile.id, $scope.profile).success(function (results) { | |
console.log('resume saved'); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment