Guest User

Untitled

a guest
Dec 22nd, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. app.controller('someController', ['$rootScope', 'Restangular', function($rootScope, Restangular) {
  2.  
  3.     console.log($rootScope);
  4.  
  5.     Restangular.all('bookings').post({example: example}).then(function(response) {
  6.         console.log($rootScope);
  7.     });
  8.  
  9. }]);
Advertisement
Add Comment
Please, Sign In to add comment