Changeset - 1574b2dc3764
[Not reviewed]
0 1 0
Bradley Kuhn (bkuhn) - 9 years ago 2014-12-04 02:09:25
bkuhn@ebb.org
Match right form for these changes.

The general selectors previously used here matched either form. With
this change, they will only match the form for which the selection was
actually made.
1 file changed with 6 insertions and 4 deletions:
0 comments (0 inline, 0 general)
www/conservancy/static/supporter-page.js
Show inline comments
...
 
@@ -35,13 +35,15 @@ $(document).ready(function() {
 
    $(".t-shirt-size-selector").hide();
 
    $('input[name=os1]:radio').change(function() {
 
        var input=$(this);
 
        var tShirtSelector = input.parent().children('.t-shirt-size-selector')
 
        var noShippingSelector = input.parent().children('input#no_shipping');
 
        var value = input.val();
 
        if (value == "Yes") {
 
            $(".t-shirt-size-selector").show();
 
            $("#no_shipping").val("2");
 
            tShirtSelector.show();
 
            noShippingSelector.val("2");
 
        } else {
 
            $(".t-shirt-size-selector").hide();
 
            $("#no_shipping").val("0");
 
            tShirtSelector.hide();
 
            noShippingSelector.val("0");
 
        }
 
    });
 
    $('*#amount').addClass("valid");
0 comments (0 inline, 0 general)