123456789101112131415161718 |
- angular.module('bootcampApp')
- .controller('NoteCtrl', function(Notes, $scope){
- var defaultNote = {
- "title": "I am a title",
- "body": "I am a body"
- };
- $scope.notes = [];
- $scope.newNote = Notes.cloneNote(defaultNote);
- $scope.createNote = function(newNote){
- newNote.createdDate = new Date();
- $scope.notes.push(Notes.cloneNote(newNote));
- $scope.newNote = Notes.cloneNote(defaultNote);
- };
- });
|