Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AppController.js « controllers « scripts « ngax « webroot « Server « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a210e6f38b24c4ed06afbf5ba9f6e945f15f1273 (plain)
1
2
3
4
5
6
7
8
9
10
11
backupApp.controller('AppController', function($scope, BrandingService, ServerStatus, SystemInfo) {
    $scope.brandingService = BrandingService.watch($scope);
    $scope.state = ServerStatus.watch($scope);
    $scope.systemInfo = SystemInfo.watch($scope);
    
    $scope.localized = {};

    $scope.doReconnect = function() {
    	ServerStatus.reconnect();
    };
});