blob: 742524446ec10a434f3c14b8ded083cb9e4d3adf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* The status controller
*
* @param {$scope} $scope The $scope service from angular
* @param {sharedProfile} sharedProfile The sharedProfile build by ourself
*/
mainApp.controller('statusCtrl', ['$scope','Identity', function ($scope, Identity)
{
$scope.profile=Identity.profile;
}]);
|