13 lines
No EOL
247 B
JavaScript
13 lines
No EOL
247 B
JavaScript
|
|
/**
|
|
* 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;
|
|
}]); |