SHARE
TWEET

Untitled

a guest May 18th, 2016 65 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. factory.saveTicket = function(ticket, type)
  2.     {
  3.         var req =
  4.         {
  5.             method : 'POST',
  6.             url : baseConfig.apiUrl + 'tickets/' + type,
  7.             dataType : 'json',
  8.             data : ticket,
  9.             headers :
  10.             {
  11.                 "Content-Type" : "application/x-www-form-urlencoded"
  12.             }
  13.         };
  14.         return $http(req);
  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