mirror of
https://github.com/kwk/docker-registry-frontend.git
synced 2024-11-10 08:52:47 +08:00
15 lines
441 B
JavaScript
15 lines
441 B
JavaScript
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* @ngdoc function
|
||
|
* @name docker-registry-frontend.controller:HomeController
|
||
|
* @description
|
||
|
* # HomeController
|
||
|
* Controller of the docker-registry-frontend
|
||
|
*/
|
||
|
angular.module('home-controller', ['app-mode-services'])
|
||
|
.controller('HomeController', ['$scope', '$route', '$routeParams', '$location', 'AppMode',
|
||
|
function($scope, $route, $routeParams, $location, AppMode){
|
||
|
$scope.appMode = AppMode.query();
|
||
|
}]);
|