blob: ce6882e842b1759ad6a9e546c9b83186bed2cf22 (
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','sharedProfile', function ($scope, sharedProfile)
{
$scope.profile=sharedProfile;
}]);
|