Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix self.isYatHandle undefined error, revert "Merge pull request #39" #40

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions local_modules/SendFundsTab/Views/SendFundsView_Base.web.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ class SendFundsView extends View
self.isSubmitButtonDisabled = false
self.setup_views()
self.startObserving()
self.isYatHandle = false
//
setTimeout(function() {
self.set_isSubmittable_needsUpdate() // start off disabled
Expand Down Expand Up @@ -1595,7 +1596,7 @@ class SendFundsView extends View
}
)
// and of course proceed
__proceedTo_generateSendTransaction(self)
__proceedTo_generateSendTransaction()
}
)
//
Expand All @@ -1621,17 +1622,17 @@ class SendFundsView extends View
_reEnableFormElements()
return
}
__proceedTo_generateSendTransaction(self)
__proceedTo_generateSendTransaction()
}
)
//
return // early return pending alert result
}
}
// fall through
__proceedTo_generateSendTransaction(self)
__proceedTo_generateSendTransaction()
//
function __proceedTo_generateSendTransaction(self)
function __proceedTo_generateSendTransaction()
{
let contact_payment_id = hasPickedAContact ? self.pickedContact.payment_id : undefined;
let cached_OAResolved_address = hasPickedAContact ? self.pickedContact.cached_OAResolved_XMR_address : undefined;
Expand Down