notes-show-controller.js 174 B

1234
  1. angular.module("noteWrangler")
  2. .controller("NotesShowController", function ($http, $routeParams, $scope, Note) {
  3. $scope.note = Note.get({ id: $routeParams.id });
  4. });