Commit 5ac42c7db6e5b1423e1c1d1e1bda70030a362981
make scuttling message only appear for 500ms
much snappier now!Matt McKegg committed on 4/19/2018, 9:25:46 PM
Parent: bfff9ddc0fc0159cb662f4168b1960ff7822dfa0
Files changed
modules/app/html/progress-notifier.js | changed |
modules/app/html/progress-notifier.js | ||
---|---|---|
@@ -46,9 +46,9 @@ | ||
46 | 46 | }) |
47 | 47 | |
48 | 48 | var hidden = sustained(computed([waiting, replicateProgress.incompleteFeeds, pending, pendingMigration], (waiting, incomplete, pending, pendingMigration) => { |
49 | 49 | return !waiting && incomplete < 5 && !pending && !pendingMigration |
50 | - }), 2000) | |
50 | + }), 500) | |
51 | 51 | |
52 | 52 | // HACK: css animations take up WAY TO MUCH cpu, remove from dom when inactive |
53 | 53 | var displaying = computed(sustained(hidden, 500, x => !x), hidden => !hidden) |
54 | 54 |
Built with git-ssb-web