diff options
| author | Kevin Serrano <kevgagser@gmail.com> | 2016-10-16 01:48:12 +0800 | 
|---|---|---|
| committer | Kevin Serrano <kevgagser@gmail.com> | 2016-10-16 01:48:12 +0800 | 
| commit | 1481a3ef8e3352eb74fa11c4f578d15d84c76de7 (patch) | |
| tree | 46b87a06085fee9438eb3cfefd104e92395c2f2f /ui/app/reducers | |
| parent | 7cba71fc5590af115997f8120ac59f1293d6e2b9 (diff) | |
| download | tangerine-wallet-browser-1481a3ef8e3352eb74fa11c4f578d15d84c76de7.tar.gz tangerine-wallet-browser-1481a3ef8e3352eb74fa11c4f578d15d84c76de7.tar.zst tangerine-wallet-browser-1481a3ef8e3352eb74fa11c4f578d15d84c76de7.zip | |
Initial work on UI side
Diffstat (limited to 'ui/app/reducers')
| -rw-r--r-- | ui/app/reducers/app.js | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index c2ac099a6..2bfb2567a 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -119,6 +119,15 @@ function reduceApp (state, action) {          warning: null,        }) +    case actions.SHOW_NEW_KEYCHAIN: +      return extend(appState, { +        currentView: { +          name: 'newKeychain', +          context: appState.currentView.context +        }, +        transForward: true, +      }) +    // unlock      case actions.UNLOCK_METAMASK: @@ -540,4 +549,3 @@ function indexForPending (state, txId) {    })    return idx  } - | 
