Add sharedProfile service

This commit is contained in:
manzerbredes 2016-02-05 19:35:38 +01:00
parent a16df328c0
commit cca5df968e
8 changed files with 42 additions and 33 deletions

View file

@ -0,0 +1,11 @@
mainApp.factory('sharedProfile',[function(){
var profile={};
profile.username="None";
profile.projectname="None";
return profile;
}]);