/** * The sharedProfile service * It's used to shared the profile between controller */ mainApp.factory('sharedProfile',[function(){ var profile={}; profile.username="None"; profile.projectname="None"; return profile; }]);