Skip to content

Commit aace30e

Browse files
author
Sachin Maheshwari
committed
correcting condition.
1 parent c14866b commit aace30e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

web-assets/js/signup.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,8 @@ $(document).ready(function () {
115115
setContinueButtonDisabledStatus(continueBtnDisable);
116116
});
117117
$("#user_privacy_policy").on("change", function(){
118-
continueBtnDisable = !this.checked;
119118
if (!continueBtnDisable) {
120-
setContinueButtonDisabledStatus(continueBtnDisable);
119+
setContinueButtonDisabledStatus(!this.checked);
121120
}
122121
})
123122
});

0 commit comments

Comments
 (0)