blob: 6e78cf66ab50db34004b5fef16f7a6242bf98aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* 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;
}]);
|