├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Cakefile ├── LICENSE ├── README.md ├── bower.json ├── example └── index.html ├── lib ├── jquery.payment.js └── jquery.payment.min.js ├── package.json ├── payment.jquery.json ├── src └── jquery.payment.coffee └── test ├── jquery.coffee ├── specs.coffee └── zepto.coffee /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/bower.json -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/example/index.html -------------------------------------------------------------------------------- /lib/jquery.payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/lib/jquery.payment.js -------------------------------------------------------------------------------- /lib/jquery.payment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/lib/jquery.payment.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/package.json -------------------------------------------------------------------------------- /payment.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/payment.jquery.json -------------------------------------------------------------------------------- /src/jquery.payment.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/src/jquery.payment.coffee -------------------------------------------------------------------------------- /test/jquery.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/test/jquery.coffee -------------------------------------------------------------------------------- /test/specs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/test/specs.coffee -------------------------------------------------------------------------------- /test/zepto.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/jquery.payment/HEAD/test/zepto.coffee --------------------------------------------------------------------------------