notes-edit-controller.js 200 B

123456
  1. angular.module('noteWrangler')
  2. .controller("NotesEditController", ['$scope', 'Note', function ($scope, Note) {
  3. $scope.updateNote = function (noteObj) {
  4. Note.create(noteObj);
  5. };
  6. }]);