14 lines
No EOL
316 B
JavaScript
14 lines
No EOL
316 B
JavaScript
|
|
|
|
/**
|
|
* 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;
|
|
|
|
|
|
}]); |