Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 8305e17

Browse files
committed
Fix missing parameter and wrong tab states in transaction modal
1 parent ee41554 commit 8305e17

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

js/views/orderShortVw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ module.exports = baseVw.extend({
5252

5353
orderConfirm: function(e){
5454
e.stopPropagation();
55-
this.openOrderModal("confirm");
55+
this.openOrderModal("summary");
5656
},
5757

5858
orderComplete: function(e){
5959
e.stopPropagation();
60-
this.openOrderModal("complete");
60+
this.openOrderModal("summary");
6161
},
6262

6363
orderDiscussion: function(e){

js/views/transactionModalVw.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ module.exports = baseVw.extend({
163163
bitcoinValidationRegex: config.bitcoinValidationRegex,
164164
transactionType: self.transactionType,
165165
userGuid: self.userModel.get('guid'),
166-
status: self.status
166+
status: self.status,
167+
orderID: self.orderID
167168
})
168169
));
169170
// add blur to container

0 commit comments

Comments
 (0)