Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created November 3, 2015 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/189bbd677386ce3f5d41 to your computer and use it in GitHub Desktop.
Save codecademydev/189bbd677386ce3f5d41 to your computer and use it in GitHub Desktop.
Codecademy export
app.controller('MainController', ['$scope','shows', function($scope, shows) {
shows.success(function(data){
$scope.shows=data;
});
}]);
<div class="img_container">
<img class="img-responsive" ng-src="{{info.series_img}}" >
</div>
<h2 class="series">{{info.series}} </h2>
<p class="genre">{{info.genre}} </p>
<p class="run-start">{{info.run_start}} </p>
<p class="description">{{info.descirption}} </p>
app.factory('shows', ['$http', function($http){
return $http.get('https://s3.amazonaws.com/codecademy-content/courses/ltp4/shows-api/shows.json').success(function(data) {
return data;
}).error(function(err) {
return err;
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment