Sha256: 410d8b876f1aa8911debeb4b1de1315a2afd2e1251ad775485538b88cc0b2184
Contents?: true
Size: 632 Bytes
Versions: 1
Compression:
Stored size: 632 Bytes
Contents
PaymentProcessor = function(); /* * Authorizes payment for an order. * * Options: * order_id : The id of the order. * address : The billing address. * zip : The billing zip code. * card_num : The 15-16 digit card number. * exp_date : Expiration date in mmYY format. * security_code : The security code on the back of the card. * * Called on /checkout/billing when order information has been confirmed and ready for authorization. * Should set any fields values in the hidden form and submit the form. */ PaymentProcessor.authorize = function(options) { };
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
caboose-store-0.0.10 | app/assets/javascripts/caboose_store/payment_processors/base.js |