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

COMCL-680: Fix Membership Form Date Field Issue #534

Merged
Merged
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
4 changes: 2 additions & 2 deletions js/paymentPlanToggler.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function paymentPlanToggler(togglerValue, currencySymbol) {
function hideOfflineAutorenewField() {
const autoRenewSelector = '.custom-group-offline_autorenew_option';

waitForElement($, '#customData',
waitForElement($, '#customData_Membership',
element => isPaymentPlanTabActive()
? $(autoRenewSelector).show()
: $(autoRenewSelector).hide()
Expand Down Expand Up @@ -437,7 +437,7 @@ function paymentPlanToggler(togglerValue, currencySymbol) {

/**
* Prevent the payment tab link from appending hash to the URL
*
*
* This resolves the issue with the activity tab not opening after signing up for a membership.
*/
function preventPaymentTabLinkAction() {
Expand Down
Loading