Commit 13baa686fc5af661ef4162f781dcc97e108f2875
don't display progress for "checking", only indexing and downloading
Matt McKegg committed on 3/13/2017, 2:42:14 AMParent: c57e834c351ebc843cc933402c6d24b4184c48ab
Files changed
modules/app/html/progress-notifier.js | changed |
modules/app/html/progress-notifier.js | ||
---|---|---|
@@ -34,10 +34,10 @@ | ||
34 | 34 | return 1 |
35 | 35 | } |
36 | 36 | }) |
37 | 37 | |
38 | - var hidden = computed([progress.incomplete, progress.feeds, queryProgress.pending], (incomplete, feeds, indexing) => { | |
39 | - return incomplete <= 10 && indexing <= 10 && feeds | |
38 | + var hidden = computed([progress.incomplete, queryProgress.pending], (incomplete, indexing) => { | |
39 | + return incomplete <= 10 && indexing <= 10 | |
40 | 40 | }) |
41 | 41 | |
42 | 42 | var hasDownloadProgress = computed([progress.feeds, progress.incomplete], (feeds, incomplete) => { |
43 | 43 | if (feeds) { |
@@ -51,9 +51,9 @@ | ||
51 | 51 | when(hasDownloadProgress, |
52 | 52 | ['Downloading new messages', h('progress', { style: {'margin-left': '10px'}, min: 0, max: 1, value: downloadProgress })], |
53 | 53 | when(queryProgress.pending, [ |
54 | 54 | ['Indexing database', h('progress', { style: {'margin-left': '10px'}, min: 0, max: 1, value: indexProgress })] |
55 | - ], 'Checking for changes...') | |
55 | + ], 'Scuttling...') | |
56 | 56 | ) |
57 | 57 | ]) |
58 | 58 | ]) |
59 | 59 | ]) |
Built with git-ssb-web