istic-openstack/client/js/services/sharedProfile.js
manzerbredes bd81674a85 Add doc
2016-02-06 12:10:04 +01:00

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;
}]);