diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-03-25 01:32:50 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-03-25 01:32:50 +0800 |
commit | 55f8ae4edd998a4d3897b9e1dd005f61fabefe37 (patch) | |
tree | 6500a39921b0b58953e5e62ce374aa923b46ee17 /app/images | |
parent | 84789d674aa5d2d57027d7ddb0ef0e8cf643a3fb (diff) | |
download | tangerine-wallet-browser-55f8ae4edd998a4d3897b9e1dd005f61fabefe37.tar tangerine-wallet-browser-55f8ae4edd998a4d3897b9e1dd005f61fabefe37.tar.gz tangerine-wallet-browser-55f8ae4edd998a4d3897b9e1dd005f61fabefe37.tar.bz2 tangerine-wallet-browser-55f8ae4edd998a4d3897b9e1dd005f61fabefe37.tar.lz tangerine-wallet-browser-55f8ae4edd998a4d3897b9e1dd005f61fabefe37.tar.xz tangerine-wallet-browser-55f8ae4edd998a4d3897b9e1dd005f61fabefe37.tar.zst tangerine-wallet-browser-55f8ae4edd998a4d3897b9e1dd005f61fabefe37.zip |
Add seed word caching during confirmation screen
In order to persist the seed word page until the user clicks the confirmation button, we need to store the seed words in localStorage.
To simplify this process I've also reorganized some of the account manager code, broken up one large function into many smaller functions, and created a new class for the IdMgmt object.
Again, sorry such a big refactor in one commit, but I really had to break it down to work through it.
Diffstat (limited to 'app/images')
-rw-r--r-- | app/images/loading.svg | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/images/loading.svg b/app/images/loading.svg new file mode 100644 index 000000000..854da88dd --- /dev/null +++ b/app/images/loading.svg @@ -0,0 +1 @@ +<svg width='120px' height='120px' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="uil-default"><rect x="0" y="0" width="100" height="100" fill="none" class="bk"></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(0 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0s' repeatCount='indefinite'/></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(40 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0.1111111111111111s' repeatCount='indefinite'/></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(80 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0.2222222222222222s' repeatCount='indefinite'/></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(120 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0.3333333333333333s' repeatCount='indefinite'/></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(160 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0.4444444444444444s' repeatCount='indefinite'/></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(200 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0.5555555555555556s' repeatCount='indefinite'/></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(240 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0.6666666666666666s' repeatCount='indefinite'/></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(280 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0.7777777777777778s' repeatCount='indefinite'/></rect><rect x='46' y='39' width='8' height='22' rx='5' ry='5' fill='#ffae29' transform='rotate(320 50 50) translate(0 -20)'> <animate attributeName='opacity' from='1' to='0' dur='1s' begin='0.8888888888888888s' repeatCount='indefinite'/></rect></svg>
\ No newline at end of file |