SHARE
TWEET

Untitled

a guest Jan 8th, 2016 41 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //HTTP logic
  2.  
  3. angular
  4.     .module('kepler')
  5.     .factory('PlanetFactory', function($http){
  6.  
  7.         function getPlanet(id){
  8.             return $http.get('http://localhost:3000/settlers/1/galaxies/1/planets/1');
  9.         }
  10.  
  11.         return{
  12.             getPlanet: getPlanet
  13.         }
  14.  
  15.     });
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top