1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

sync loading spinner

This commit is contained in:
Kyle Spearrin
2016-09-21 20:21:54 -04:00
parent 214ec930c3
commit eb26370f4d
2 changed files with 6 additions and 0 deletions

View File

@@ -3,10 +3,13 @@
.controller('settingsSyncController', function ($scope, syncService, toastr) {
$scope.lastSync = '--';
$scope.loading = false;
setLastSync();
$scope.sync = function () {
$scope.loading = true;
syncService.fullSync(function () {
$scope.loading = false;
toastr.success('Syncing complete');
setLastSync();
});