Skip to content

Instantly share code, notes, and snippets.

@malerba118
Last active June 14, 2017 05:02
Show Gist options
  • Save malerba118/5613d85e1f67888073fdbc6350d7c253 to your computer and use it in GitHub Desktop.
Save malerba118/5613d85e1f67888073fdbc6350d7c253 to your computer and use it in GitHub Desktop.
app.controller('RootController', function( $scope, NoteService ) {
NoteService.getNotes().then(
//success
function(notes) {
$scope.notes = notes;;
},
//error
function(error) {
console.log(error);
}
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment