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