Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. app.factory('Profile', ['$resource', function ($resource) {
  2. var self = $resource(mins_settings.url.profile);
  3.  
  4. self.my = function($scope) {
  5. self.get().$promise.then(function(res){
  6. $scope.profile = res;
  7. $scope.profile.avatar = res.avatar ? res.avatar : mins_settings.url.img + 'avatar_blank.gif';
  8. });
  9. }
  10.  
  11. return self;
  12. }]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement