SHARE
TWEET

Untitled

a guest Dec 20th, 2014 173 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. logoServices.factory('Shifts', ['$resource',
  2.   function($resource){
  3.     return $resource('blah.php?sd=:startdate&ed=:enddate', {}, {
  4.       query: {method:'GET', params:{startdate:'12/11/2014', enddate: '12/17/2014'}, isArray:true}
  5.     });
  6.   }]);
  7.  
  8. controller({
  9. var shifts = Shifts.get({}, callbackFunction() {
  10. }
  11. });
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