2016-01-31 11:47:13 +01:00
|
|
|
|
|
|
|
|
2016-02-06 12:10:04 +01:00
|
|
|
/**
|
|
|
|
* The status controller
|
|
|
|
*
|
|
|
|
* @param {$scope} $scope The $scope service from angular
|
|
|
|
* @param {sharedProfile} sharedProfile The sharedProfile build by ourself
|
|
|
|
*/
|
2016-02-10 17:47:01 +01:00
|
|
|
mainApp.controller('statusCtrl', ['$scope','Identity', function ($scope, Identity)
|
2016-02-05 19:35:38 +01:00
|
|
|
{
|
2016-02-10 17:47:01 +01:00
|
|
|
$scope.profile=Identity.profile;
|
2016-02-05 19:35:38 +01:00
|
|
|
|
2016-01-31 11:47:13 +01:00
|
|
|
|
2016-02-10 17:47:01 +01:00
|
|
|
}]);
|