From e180e53e73ce618d7c7d33cf8cbaddda68529572 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Mon, 7 Jul 2014 17:00:26 -0300 Subject: [PATCH] add SIN and video --- css/main.css | 5 +++ index.html | 69 ++++++++++++++++++++++++---------------- js/models/core/Wallet.js | 3 +- 3 files changed, 49 insertions(+), 28 deletions(-) diff --git a/css/main.css b/css/main.css index 5147a20e4..b2ea53654 100644 --- a/css/main.css +++ b/css/main.css @@ -286,6 +286,11 @@ hr { margin: 2.25rem 0;} display: inline; float: right; } + +.setup .video-small { + float: none !important; +} + .online { background-color: black; border: 3px solid #1ABC9C; diff --git a/index.html b/index.html index b4322cbcf..f641caa40 100644 --- a/index.html +++ b/index.html @@ -82,31 +82,10 @@
-
-
-
- - Not all copayers have joined your wallet yet. - - {{$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers() }} people have - - - One person has - - yet to join. -
-
- - All copayers have joined the wallet, it's ready for use! -
-
-
-

Share this secret with your other copayers - for them to join your wallet

@@ -126,11 +105,34 @@
- +
People on this wallet
+ +
+ + + + you + + + {{c.nick}} + [SIN: {{c.peerId}}] + +
+ +
+ + Waiting for other copayers to join +
+
@@ -139,7 +141,20 @@
diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index d705b05d3..5ee65c49b 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -326,7 +326,8 @@ Wallet.prototype.getRegisteredPeerIds = function() { var pid = this.network.peerFromCopayer(cid); this.registeredPeerIds.push({ peerId: pid, - nick: this.publicKeyRing.nicknameForCopayer(cid) + nick: this.publicKeyRing.nicknameForCopayer(cid), + index: i, }); } }