blob: 2930e34f56a8394714b3a06a5937a27d35d6712d (
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 {Identity} The Identity service
*/
mainApp.controller('statusCtrl', ['$scope','Identity', function ($scope, Identity)
{
$scope.profile=Identity.profile;
}]);
|