Skip to content

Instantly share code, notes, and snippets.

@bandrzejczak
Created February 9, 2018 22:21
Show Gist options
  • Save bandrzejczak/2c4fdf8178ead479d193196f7f5148ec to your computer and use it in GitHub Desktop.
Save bandrzejczak/2c4fdf8178ead479d193196f7f5148ec to your computer and use it in GitHub Desktop.
$rootScope.authData = {};
$http.jsonp("http://localhost:9000/test?callback=JSON_CALLBACK")
.success(function (response) {
$rootScope.authData.token = response.token;
$rootScope.authData.username = response.username;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment