Commit fcaa6843415e3369669280052f938b5bf2ace2d4
increase threshold for loading message to appear
Matt McKegg committed on 2/25/2017, 4:29:21 AMParent: 67371b374756f48fa1b6a418ef83cdcf7321fec8
Files changed
modules/app/html/progress-notifier.js | changed |
modules/app/html/progress-notifier.js | |||
---|---|---|---|
@@ -35,14 +35,14 @@ | |||
35 | 35 … | } | |
36 | 36 … | }) | |
37 | 37 … | ||
38 | 38 … | var hidden = computed([progress.incomplete, progress.feeds, queryProgress.pending], (incomplete, feeds, indexing) => { | |
39 | - return incomplete <= 5 && !indexing && feeds | ||
39 … | + return incomplete <= 10 && indexing <= 10 && feeds | ||
40 | 40 … | }) | |
41 | 41 … | ||
42 | 42 … | var hasDownloadProgress = computed([progress.feeds, progress.incomplete], (feeds, incomplete) => { | |
43 | 43 … | if (feeds) { | |
44 | - return incomplete > 5 | ||
44 … | + return incomplete > 10 | ||
45 | 45 … | } | |
46 | 46 … | }) | |
47 | 47 … | ||
48 | 48 … | return h('div.info', { hidden: throttle(hidden, 5000) }, [ |
Built with git-ssb-web