Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. controller('userController', function(){
  2.     this.user = {};
  3.    
  4.     this.addUser = function(user){
  5.         users.push(this.user);
  6.         this.user = {};
  7.     };
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement