mirror of
https://github.com/syncthing/syncthing.git
synced 2024-11-16 10:28:49 -07:00
Handle UI in restart/shutdown
This commit is contained in:
parent
6115631746
commit
51e9839237
File diff suppressed because one or more lines are too long
@ -55,10 +55,10 @@ syncthing.controller('EventCtrl', function ($scope, $http) {
|
|||||||
online = false;
|
online = false;
|
||||||
}
|
}
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
$http.get(urlbase + '/events?since=' + lastID)
|
$http.get(urlbase + '/events?limit=1')
|
||||||
.success(successFn)
|
.success(successFn)
|
||||||
.error(errorFn);
|
.error(errorFn);
|
||||||
}, 500);
|
}, 1000);
|
||||||
};
|
};
|
||||||
|
|
||||||
$http.get(urlbase + '/events?limit=1')
|
$http.get(urlbase + '/events?limit=1')
|
||||||
@ -118,13 +118,16 @@ syncthing.controller('SyncthingCtrl', function ($scope, $http, $translate, $loca
|
|||||||
}
|
}
|
||||||
|
|
||||||
$scope.$on('UIOnline', function (event, arg) {
|
$scope.$on('UIOnline', function (event, arg) {
|
||||||
|
console.log('UIOnline');
|
||||||
$scope.init();
|
$scope.init();
|
||||||
|
restarting = false;
|
||||||
$('#networkError').modal('hide');
|
$('#networkError').modal('hide');
|
||||||
$('#restarting').modal('hide');
|
$('#restarting').modal('hide');
|
||||||
$('#shutdown').modal('hide');
|
$('#shutdown').modal('hide');
|
||||||
});
|
});
|
||||||
|
|
||||||
$scope.$on('UIOffline', function (event, arg) {
|
$scope.$on('UIOffline', function (event, arg) {
|
||||||
|
console.log('UIOffline');
|
||||||
if (!restarting) {
|
if (!restarting) {
|
||||||
$('#networkError').modal({backdrop: 'static', keyboard: false});
|
$('#networkError').modal({backdrop: 'static', keyboard: false});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user