mirror of https://github.com/portainer/portainer
11 lines
266 B
JavaScript
11 lines
266 B
JavaScript
|
angular.module('sidebar', [])
|
||
|
.controller('SidebarController', ['$scope', 'Settings', 'Config', 'Info',
|
||
|
function ($scope, Settings, Config, Info) {
|
||
|
|
||
|
Config.$promise.then(function (c) {
|
||
|
$scope.logo = c.logo;
|
||
|
});
|
||
|
|
||
|
$scope.uiVersion = Settings.uiVersion;
|
||
|
}]);
|