diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-09-09 10:53:54 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-09-09 10:53:54 +0800 |
commit | 7b6c018c3978f11d05fe3854a1f4072d3446b4b2 (patch) | |
tree | 3f154ea80992a99d359e1e42e60ff2f5838e21a3 | |
parent | c97aef2b997e32aeab61d2a81a6513f237c66a31 (diff) | |
download | tangerine-wallet-browser-7b6c018c3978f11d05fe3854a1f4072d3446b4b2.tar tangerine-wallet-browser-7b6c018c3978f11d05fe3854a1f4072d3446b4b2.tar.gz tangerine-wallet-browser-7b6c018c3978f11d05fe3854a1f4072d3446b4b2.tar.bz2 tangerine-wallet-browser-7b6c018c3978f11d05fe3854a1f4072d3446b4b2.tar.lz tangerine-wallet-browser-7b6c018c3978f11d05fe3854a1f4072d3446b4b2.tar.xz tangerine-wallet-browser-7b6c018c3978f11d05fe3854a1f4072d3446b4b2.tar.zst tangerine-wallet-browser-7b6c018c3978f11d05fe3854a1f4072d3446b4b2.zip |
Show loading indication during unlocking.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | ui/app/actions.js | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dee1089c..19628ce3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Block negative values from transactions. - Fixed a memory leak. - MetaMask logo now renders as super lightweight SVG, improving compatibility and performance. +- Now showing loading indication during vault unlocking, to clarify behavior for users who are experience slow unlocks. ## 2.10.2 2016-09-02 diff --git a/ui/app/actions.js b/ui/app/actions.js index d49223e71..57c2bf3e8 100644 --- a/ui/app/actions.js +++ b/ui/app/actions.js @@ -162,8 +162,10 @@ function goHome () { function tryUnlockMetamask (password) { return (dispatch) => { + dispatch(actions.showLoadingIndication()) dispatch(actions.unlockInProgress()) _accountManager.submitPassword(password, (err, selectedAccount) => { + dispatch(actions.hideLoadingIndication()) if (err) { dispatch(actions.unlockFailed()) } else { |