Skip to content

Instantly share code, notes, and snippets.

@asicfr
Created February 22, 2013 14:02
Show Gist options
  • Save asicfr/5013596 to your computer and use it in GitHub Desktop.
Save asicfr/5013596 to your computer and use it in GitHub Desktop.
bookStoreauthor.controller
bookStoreauthor.controller('AuthorDetailCtrl', ['$scope', '$location', '$routeParams', '$rootScope', 'ApiAuthor', 'ApiStorage', function ($scope, $location, $routeParams, $rootScope, ApiAuthor, ApiStorage) {
$rootScope.logMe("AuthorDetailCtrl");
$scope.idCurrent = $routeParams.id;
$rootScope.logMe("get author ");
$scope.oneauthor = ApiAuthor.get($scope.idCurrent);
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment