Add doc
This commit is contained in:
parent
e9e7ddf9b1
commit
bd81674a85
7 changed files with 62 additions and 31 deletions
|
@ -1,9 +1,8 @@
|
|||
/*
|
||||
* home Controller
|
||||
/**
|
||||
* The home controller
|
||||
*
|
||||
* @param {$scope} $scope The $scope service from angular
|
||||
*/
|
||||
|
||||
|
||||
|
||||
mainApp.controller('homeCtrl', function ($scope)
|
||||
{
|
||||
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
|
||||
/**
|
||||
* Represents a book.
|
||||
* @constructor
|
||||
* The login controler
|
||||
* @param {$scope} $scope The $scope angular service
|
||||
* @param {$sce} $sce The $sce angular service
|
||||
* @param {$http} $http The $http angular service
|
||||
* @param {sharedProfile} sharedProfile The sharedProfile service
|
||||
|
||||
*/
|
||||
mainApp.controller('loginCtrl', ['$scope','$sce','$http', 'sharedProfile', function ($scope,$sce, $http, sharedProfile)
|
||||
{
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
/*
|
||||
* network Controller
|
||||
/**
|
||||
* The network controller
|
||||
*
|
||||
* @param {$scope} $scope The $scope service from angular
|
||||
*/
|
||||
|
||||
|
||||
|
||||
mainApp.controller('networkCtrl', function ($scope)
|
||||
{
|
||||
});
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* mainApp Controller
|
||||
|
||||
|
||||
/**
|
||||
* 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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue