aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts/notes.js
blob: 9a92f3e6a1f82bcb8ae4fe6368d37f776c3665c8 (plain)
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();
			}
		]);
})();