Advertisement
Guest User

Untitled

a guest
May 27th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //productResource.js file
  2. (function () {
  3.     'use strict';
  4.     angular
  5.     .module('common.services')
  6.     .factory('productResource', ['$resource', 'appSettings', productResource]);
  7.  
  8.     function productResource($resource, appSettings) {
  9.         return $resource(appSettings.serverPath + '/api/products/:id');
  10.     }
  11. }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement