Skip to content

Instantly share code, notes, and snippets.

@antonydenyer
Created July 29, 2014 08:58
Show Gist options
  • Save antonydenyer/dff322e01734bcafb47c to your computer and use it in GitHub Desktop.
Save antonydenyer/dff322e01734bcafb47c to your computer and use it in GitHub Desktop.
var app = angular.module('MyApp', []);
app.controller('MyController', function($scope, myService) {
myService.getSomething()
.then(function(response) {
$scope.viewModel = response;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment