git ssb

10+

Matt McKegg / patchwork



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.jschanged
modules/app/html/progress-notifier.jsView
@@ -46,9 +46,9 @@
4646 })
4747
4848 var hidden = sustained(computed([waiting, replicateProgress.incompleteFeeds, pending, pendingMigration], (waiting, incomplete, pending, pendingMigration) => {
4949 return !waiting && incomplete < 5 && !pending && !pendingMigration
50- }), 2000)
50+ }), 500)
5151
5252 // HACK: css animations take up WAY TO MUCH cpu, remove from dom when inactive
5353 var displaying = computed(sustained(hidden, 500, x => !x), hidden => !hidden)
5454

Built with git-ssb-web