Guest User

Untitled

a guest
Apr 1st, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. quoteoftheday.controller('quoteCtrl', function($scope, $http) {
  2. $http.get('js/quote.json').
  3. success(function(data) {
  4. $scope.quote = data;
  5.  
  6. }).
  7. error(function(err) {
  8. console.log(err);
  9. });
  10.  
  11.  
  12.  
  13. })
Advertisement
Add Comment
Please, Sign In to add comment