istic-openstack/client/js/services/sharedProfile.js

13 lines
247 B
JavaScript
Raw Normal View History

2016-02-05 19:35:38 +01:00
2016-02-06 12:10:04 +01:00
/**
* The sharedProfile service
* It's used to shared the profile between controller
*/
2016-02-05 19:35:38 +01:00
mainApp.factory('sharedProfile',[function(){
var profile={};
profile.username="None";
profile.projectname="None";
return profile;
}]);