Sha256: 7251722d9f62aa280035ca4738182209d6adc4bbb0b961997db42d85ce7055b6
Contents?: true
Size: 1.95 KB
Versions: 8
Compression:
Stored size: 1.95 KB
Contents
#= require spree/frontend/coupon_manager Spree.ready ($) -> Spree.onPayment = () -> if ($ '#checkout_form_payment').length if ($ '#existing_cards').length ($ '#payment-method-fields').hide() ($ '#payment-methods').hide() ($ '#use_existing_card_yes').click -> ($ '#payment-method-fields').hide() ($ '#payment-methods').hide() ($ '.existing-cc-radio').prop("disabled", false) ($ '#use_existing_card_no').click -> ($ '#payment-method-fields').show() ($ '#payment-methods').show() ($ '.existing-cc-radio').prop("disabled", true) $(".cardNumber").payment('formatCardNumber') $(".cardExpiry").payment('formatCardExpiry') $(".cardCode").payment('formatCardCVC') $(".cardNumber").change -> $(this).parent().siblings(".ccType").val($.payment.cardType(@value)) ($ 'input[type="radio"][name="order[payments_attributes][][payment_method_id]"]').click(-> ($ '#payment-methods li').hide() ($ '#payment_method_' + @value).show() if @checked ) ($ document).on('click', '#cvv_link', (event) -> windowName = 'cvv_info' windowOptions = 'left=20,top=20,width=500,height=500,toolbar=0,resizable=0,scrollbars=1' window.open(($ this).attr('href'), windowName, windowOptions) event.preventDefault() ) # Activate already checked payment method if form is re-rendered # i.e. if user enters invalid data ($ 'input[type="radio"]:checked').click() $('#checkout_form_payment').submit (event) -> input = couponCodeField: $('#order_coupon_code') couponStatus: $('#coupon_status') if $.trim(input.couponCodeField.val()).length > 0 if new CouponManager(input).applyCoupon() @submit() return true else Spree.enableSave() event.preventDefault() return false Spree.onPayment()
Version data entries
8 entries across 8 versions & 1 rubygems