aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts/notes.js
blob: d57f7b21c918135dc8b05ded94c8d821d3741216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(function(angular) {
	angular
		.module('nt.NotesApp', [
			'nt.NotesService'
		])
		.controller('MainController', [
			'$scope',
			'NotesService',
			function($scope, NotesService) {
				$scope.notesService = NotesService;
				NotesService.fetch();
			}
		]);
})(window.angular);