1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
(function() { angular .module('nt.Notes', [ 'nt.NoteService' ]) .controller('MainController', [ '$scope', 'NoteService', function($scope, NoteService) { $scope.noteService = NoteService; $scope.noteService.get_notes(); } ]); })();