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