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();
});

View File

@ -11,6 +11,9 @@
Sync Vault Now
</a>
<small class="text-muted">Last Sync: {{lastSync}}</small>
<span ng-show="loading" style="display: block; margin-top: 20px;">
<i class="text-muted fa fa-lg fa-spinner fa-spin"></i>
</span>
</p>
</div>
</div>