├── .gitattributes ├── 9781484251836.jpg ├── Ch2 ├── errorhandling │ ├── errorhandling.css │ └── errorhandling.js ├── firstcheckout │ ├── firstcheckout.css │ ├── firstcheckout.html │ └── firstcheckout.js └── setup │ └── index.html ├── Ch3 ├── change order │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment.js │ │ └── scripts.js ├── currencies │ ├── code - finished version │ │ ├── css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js │ │ │ └── payment.js │ ├── css │ │ └── styles.css │ ├── images │ │ ├── chillis.png │ │ ├── united-kingdom.png │ │ └── united-states.png │ ├── index.html │ └── js │ │ ├── payment - finished version.js │ │ └── payment.js ├── discounts │ ├── code - finished version │ │ ├── css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js │ │ │ └── payment.js │ ├── css │ │ └── styles.css │ ├── images │ │ └── chillis.png │ ├── index.html │ └── js │ │ └── payment.js ├── extra info │ ├── code - finished version │ │ ├── css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js │ │ │ ├── payment.js │ │ │ └── scripts.js │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment.js │ │ └── scripts.js ├── iframe │ ├── code - finished version │ │ └── iframe.html │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment.js │ │ └── scripts.js ├── next step │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment - finished version.js │ │ └── scripts.js └── options │ ├── css │ └── styles.css │ ├── favicon.png │ ├── images │ ├── background.png │ ├── black.png │ ├── brown.png │ ├── hamburger.png │ ├── purple.png │ ├── recycling-bin.png │ ├── red.png │ ├── shopping-basket.png │ └── yellow.png │ ├── index.html │ └── js │ ├── payment.js │ └── scripts.js ├── Ch4 ├── basic options │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment - completed version.js │ │ ├── payment.js │ │ └── scripts.js ├── expand options │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment - completed version.js │ │ ├── payment.js │ │ └── scripts.js ├── restrictions │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment - completed version.js │ │ ├── payment.js │ │ └── scripts.js ├── spot errors │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment.js │ │ └── scripts.js └── update shipping │ ├── css │ └── styles.css │ ├── favicon.png │ ├── images │ ├── background.png │ ├── black.png │ ├── brown.png │ ├── hamburger.png │ ├── purple.png │ ├── recycling-bin.png │ ├── red.png │ ├── shopping-basket.png │ └── yellow.png │ ├── index.html │ └── js │ ├── payment - completed version.js │ ├── payment.js │ └── scripts.js ├── Ch5 ├── bobpay │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── all.js │ │ ├── payment.js │ │ └── scripts.js ├── charges │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment.js │ │ └── scripts.js ├── nobob │ ├── css │ │ └── styles.css │ ├── favicon.png │ ├── images │ │ ├── background.png │ │ ├── black.png │ │ ├── bobpay.png │ │ ├── brown.png │ │ ├── hamburger.png │ │ ├── purple.png │ │ ├── recycling-bin.png │ │ ├── red.png │ │ ├── shopping-basket.png │ │ └── yellow.png │ ├── index.html │ └── js │ │ ├── payment.js │ │ └── scripts.js └── stripe │ ├── css │ └── stripe.css │ ├── example index.html │ ├── images │ └── chillis.png │ ├── index.html │ └── js │ ├── all.js │ └── scripts.js ├── Ch6 └── coffee │ ├── css │ ├── dart-sass │ │ ├── dart-sass.bat │ │ ├── sass.bat │ │ └── src │ │ │ ├── DART_LICENSE │ │ │ ├── SASS_LICENSE │ │ │ ├── dart.exe │ │ │ └── sass.dart.snapshot │ ├── styles-BACKUP.css │ ├── styles-sass.scss │ ├── styles.css │ └── styles.css.map │ ├── favicon.png │ ├── images │ ├── black.png │ ├── brown.png │ ├── latte.svg │ ├── long.svg │ ├── purple.png │ ├── recycling-bin.png │ ├── red.png │ ├── shopping-basket.png │ ├── short.svg │ └── yellow.png │ ├── index.html │ └── js │ ├── Examples │ ├── payment - basic.js │ ├── payment - bobpay.js │ ├── payment - charges.js │ ├── payment - errors.js │ └── payment - shipping.js │ ├── payment - completed version.js │ └── scripts.js ├── Ch7 ├── cookies │ ├── css │ │ ├── bootstrap.min.css │ │ └── styles.css │ ├── fonts │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── cbakewell.png │ │ ├── coconut.png │ │ ├── dark-choc.png │ │ ├── double-choc.png │ │ ├── jaffa.png │ │ ├── oatmeal-rasin.png │ │ ├── rasberry-white-choc.png │ │ ├── toffee.png │ │ └── white-choc.png │ ├── index.html │ └── js │ │ ├── bootstrap.min.js │ │ ├── script.js │ │ └── vue.min.js └── geolocate │ ├── css │ ├── bootstrap.min.css │ └── styles.css │ ├── fonts │ └── glyphicons-halflings-regular.woff2 │ ├── images │ ├── cbakewell.png │ ├── coconut.png │ ├── dark-choc.png │ ├── double-choc.png │ ├── jaffa.png │ ├── oatmeal-rasin.png │ ├── rasberry-white-choc.png │ ├── toffee.png │ └── white-choc.png │ ├── index.html │ └── js │ ├── bootstrap.min.js │ ├── jquery.qrcode.min.js │ ├── script.js │ └── vue.min.js ├── Ch8 └── basiccard - completed version │ ├── app.js │ ├── css │ └── style.css │ ├── favicon.ico │ ├── images │ └── coffee.png │ ├── index.html │ ├── installer.js │ ├── manifest.json │ └── testing │ ├── coffee.png │ ├── css │ └── style.css │ ├── favicon.ico │ ├── js │ ├── merchant.js │ └── util.js │ └── test.html ├── Contributing.md ├── LICENSE.txt ├── README.md └── errata.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484251836.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/9781484251836.jpg -------------------------------------------------------------------------------- /Ch2/errorhandling/errorhandling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch2/errorhandling/errorhandling.css -------------------------------------------------------------------------------- /Ch2/errorhandling/errorhandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch2/errorhandling/errorhandling.js -------------------------------------------------------------------------------- /Ch2/firstcheckout/firstcheckout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch2/firstcheckout/firstcheckout.css -------------------------------------------------------------------------------- /Ch2/firstcheckout/firstcheckout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch2/firstcheckout/firstcheckout.html -------------------------------------------------------------------------------- /Ch2/firstcheckout/firstcheckout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch2/firstcheckout/firstcheckout.js -------------------------------------------------------------------------------- /Ch2/setup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch2/setup/index.html -------------------------------------------------------------------------------- /Ch3/change order/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/css/styles.css -------------------------------------------------------------------------------- /Ch3/change order/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/favicon.png -------------------------------------------------------------------------------- /Ch3/change order/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/background.png -------------------------------------------------------------------------------- /Ch3/change order/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/black.png -------------------------------------------------------------------------------- /Ch3/change order/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/brown.png -------------------------------------------------------------------------------- /Ch3/change order/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/hamburger.png -------------------------------------------------------------------------------- /Ch3/change order/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/purple.png -------------------------------------------------------------------------------- /Ch3/change order/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch3/change order/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/red.png -------------------------------------------------------------------------------- /Ch3/change order/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch3/change order/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/images/yellow.png -------------------------------------------------------------------------------- /Ch3/change order/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/index.html -------------------------------------------------------------------------------- /Ch3/change order/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/js/payment.js -------------------------------------------------------------------------------- /Ch3/change order/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/change order/js/scripts.js -------------------------------------------------------------------------------- /Ch3/currencies/code - finished version/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/code - finished version/css/styles.css -------------------------------------------------------------------------------- /Ch3/currencies/code - finished version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/code - finished version/index.html -------------------------------------------------------------------------------- /Ch3/currencies/code - finished version/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/code - finished version/js/payment.js -------------------------------------------------------------------------------- /Ch3/currencies/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/css/styles.css -------------------------------------------------------------------------------- /Ch3/currencies/images/chillis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/images/chillis.png -------------------------------------------------------------------------------- /Ch3/currencies/images/united-kingdom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/images/united-kingdom.png -------------------------------------------------------------------------------- /Ch3/currencies/images/united-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/images/united-states.png -------------------------------------------------------------------------------- /Ch3/currencies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/index.html -------------------------------------------------------------------------------- /Ch3/currencies/js/payment - finished version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/js/payment - finished version.js -------------------------------------------------------------------------------- /Ch3/currencies/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/currencies/js/payment.js -------------------------------------------------------------------------------- /Ch3/discounts/code - finished version/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/discounts/code - finished version/css/styles.css -------------------------------------------------------------------------------- /Ch3/discounts/code - finished version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/discounts/code - finished version/index.html -------------------------------------------------------------------------------- /Ch3/discounts/code - finished version/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/discounts/code - finished version/js/payment.js -------------------------------------------------------------------------------- /Ch3/discounts/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/discounts/css/styles.css -------------------------------------------------------------------------------- /Ch3/discounts/images/chillis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/discounts/images/chillis.png -------------------------------------------------------------------------------- /Ch3/discounts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/discounts/index.html -------------------------------------------------------------------------------- /Ch3/discounts/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/discounts/js/payment.js -------------------------------------------------------------------------------- /Ch3/extra info/code - finished version/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/code - finished version/css/styles.css -------------------------------------------------------------------------------- /Ch3/extra info/code - finished version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/code - finished version/index.html -------------------------------------------------------------------------------- /Ch3/extra info/code - finished version/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/code - finished version/js/payment.js -------------------------------------------------------------------------------- /Ch3/extra info/code - finished version/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/code - finished version/js/scripts.js -------------------------------------------------------------------------------- /Ch3/extra info/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/css/styles.css -------------------------------------------------------------------------------- /Ch3/extra info/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/favicon.png -------------------------------------------------------------------------------- /Ch3/extra info/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/background.png -------------------------------------------------------------------------------- /Ch3/extra info/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/black.png -------------------------------------------------------------------------------- /Ch3/extra info/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/brown.png -------------------------------------------------------------------------------- /Ch3/extra info/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/hamburger.png -------------------------------------------------------------------------------- /Ch3/extra info/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/purple.png -------------------------------------------------------------------------------- /Ch3/extra info/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch3/extra info/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/red.png -------------------------------------------------------------------------------- /Ch3/extra info/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch3/extra info/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/images/yellow.png -------------------------------------------------------------------------------- /Ch3/extra info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/index.html -------------------------------------------------------------------------------- /Ch3/extra info/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/js/payment.js -------------------------------------------------------------------------------- /Ch3/extra info/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/extra info/js/scripts.js -------------------------------------------------------------------------------- /Ch3/iframe/code - finished version/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/code - finished version/iframe.html -------------------------------------------------------------------------------- /Ch3/iframe/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/css/styles.css -------------------------------------------------------------------------------- /Ch3/iframe/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/favicon.png -------------------------------------------------------------------------------- /Ch3/iframe/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/background.png -------------------------------------------------------------------------------- /Ch3/iframe/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/black.png -------------------------------------------------------------------------------- /Ch3/iframe/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/brown.png -------------------------------------------------------------------------------- /Ch3/iframe/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/hamburger.png -------------------------------------------------------------------------------- /Ch3/iframe/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/purple.png -------------------------------------------------------------------------------- /Ch3/iframe/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch3/iframe/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/red.png -------------------------------------------------------------------------------- /Ch3/iframe/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch3/iframe/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/images/yellow.png -------------------------------------------------------------------------------- /Ch3/iframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/index.html -------------------------------------------------------------------------------- /Ch3/iframe/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/js/payment.js -------------------------------------------------------------------------------- /Ch3/iframe/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/iframe/js/scripts.js -------------------------------------------------------------------------------- /Ch3/next step/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/css/styles.css -------------------------------------------------------------------------------- /Ch3/next step/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/favicon.png -------------------------------------------------------------------------------- /Ch3/next step/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/background.png -------------------------------------------------------------------------------- /Ch3/next step/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/black.png -------------------------------------------------------------------------------- /Ch3/next step/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/brown.png -------------------------------------------------------------------------------- /Ch3/next step/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/hamburger.png -------------------------------------------------------------------------------- /Ch3/next step/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/purple.png -------------------------------------------------------------------------------- /Ch3/next step/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch3/next step/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/red.png -------------------------------------------------------------------------------- /Ch3/next step/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch3/next step/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/images/yellow.png -------------------------------------------------------------------------------- /Ch3/next step/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/index.html -------------------------------------------------------------------------------- /Ch3/next step/js/payment - finished version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/js/payment - finished version.js -------------------------------------------------------------------------------- /Ch3/next step/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/next step/js/scripts.js -------------------------------------------------------------------------------- /Ch3/options/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/css/styles.css -------------------------------------------------------------------------------- /Ch3/options/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/favicon.png -------------------------------------------------------------------------------- /Ch3/options/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/background.png -------------------------------------------------------------------------------- /Ch3/options/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/black.png -------------------------------------------------------------------------------- /Ch3/options/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/brown.png -------------------------------------------------------------------------------- /Ch3/options/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/hamburger.png -------------------------------------------------------------------------------- /Ch3/options/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/purple.png -------------------------------------------------------------------------------- /Ch3/options/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch3/options/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/red.png -------------------------------------------------------------------------------- /Ch3/options/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch3/options/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/images/yellow.png -------------------------------------------------------------------------------- /Ch3/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/index.html -------------------------------------------------------------------------------- /Ch3/options/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/js/payment.js -------------------------------------------------------------------------------- /Ch3/options/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch3/options/js/scripts.js -------------------------------------------------------------------------------- /Ch4/basic options/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/css/styles.css -------------------------------------------------------------------------------- /Ch4/basic options/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/favicon.png -------------------------------------------------------------------------------- /Ch4/basic options/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/background.png -------------------------------------------------------------------------------- /Ch4/basic options/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/black.png -------------------------------------------------------------------------------- /Ch4/basic options/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/brown.png -------------------------------------------------------------------------------- /Ch4/basic options/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/hamburger.png -------------------------------------------------------------------------------- /Ch4/basic options/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/purple.png -------------------------------------------------------------------------------- /Ch4/basic options/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch4/basic options/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/red.png -------------------------------------------------------------------------------- /Ch4/basic options/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch4/basic options/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/images/yellow.png -------------------------------------------------------------------------------- /Ch4/basic options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/index.html -------------------------------------------------------------------------------- /Ch4/basic options/js/payment - completed version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/js/payment - completed version.js -------------------------------------------------------------------------------- /Ch4/basic options/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/js/payment.js -------------------------------------------------------------------------------- /Ch4/basic options/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/basic options/js/scripts.js -------------------------------------------------------------------------------- /Ch4/expand options/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/css/styles.css -------------------------------------------------------------------------------- /Ch4/expand options/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/favicon.png -------------------------------------------------------------------------------- /Ch4/expand options/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/background.png -------------------------------------------------------------------------------- /Ch4/expand options/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/black.png -------------------------------------------------------------------------------- /Ch4/expand options/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/brown.png -------------------------------------------------------------------------------- /Ch4/expand options/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/hamburger.png -------------------------------------------------------------------------------- /Ch4/expand options/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/purple.png -------------------------------------------------------------------------------- /Ch4/expand options/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch4/expand options/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/red.png -------------------------------------------------------------------------------- /Ch4/expand options/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch4/expand options/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/images/yellow.png -------------------------------------------------------------------------------- /Ch4/expand options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/index.html -------------------------------------------------------------------------------- /Ch4/expand options/js/payment - completed version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/js/payment - completed version.js -------------------------------------------------------------------------------- /Ch4/expand options/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/js/payment.js -------------------------------------------------------------------------------- /Ch4/expand options/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/expand options/js/scripts.js -------------------------------------------------------------------------------- /Ch4/restrictions/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/css/styles.css -------------------------------------------------------------------------------- /Ch4/restrictions/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/favicon.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/background.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/black.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/brown.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/hamburger.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/purple.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/red.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch4/restrictions/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/images/yellow.png -------------------------------------------------------------------------------- /Ch4/restrictions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/index.html -------------------------------------------------------------------------------- /Ch4/restrictions/js/payment - completed version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/js/payment - completed version.js -------------------------------------------------------------------------------- /Ch4/restrictions/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/js/payment.js -------------------------------------------------------------------------------- /Ch4/restrictions/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/restrictions/js/scripts.js -------------------------------------------------------------------------------- /Ch4/spot errors/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/css/styles.css -------------------------------------------------------------------------------- /Ch4/spot errors/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/favicon.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/background.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/black.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/brown.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/hamburger.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/purple.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/red.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch4/spot errors/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/images/yellow.png -------------------------------------------------------------------------------- /Ch4/spot errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/index.html -------------------------------------------------------------------------------- /Ch4/spot errors/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/js/payment.js -------------------------------------------------------------------------------- /Ch4/spot errors/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/spot errors/js/scripts.js -------------------------------------------------------------------------------- /Ch4/update shipping/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/css/styles.css -------------------------------------------------------------------------------- /Ch4/update shipping/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/favicon.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/background.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/black.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/brown.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/hamburger.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/purple.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/red.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch4/update shipping/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/images/yellow.png -------------------------------------------------------------------------------- /Ch4/update shipping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/index.html -------------------------------------------------------------------------------- /Ch4/update shipping/js/payment - completed version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/js/payment - completed version.js -------------------------------------------------------------------------------- /Ch4/update shipping/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/js/payment.js -------------------------------------------------------------------------------- /Ch4/update shipping/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch4/update shipping/js/scripts.js -------------------------------------------------------------------------------- /Ch5/bobpay/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/css/styles.css -------------------------------------------------------------------------------- /Ch5/bobpay/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/favicon.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/background.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/black.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/brown.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/hamburger.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/purple.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/red.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch5/bobpay/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/images/yellow.png -------------------------------------------------------------------------------- /Ch5/bobpay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/index.html -------------------------------------------------------------------------------- /Ch5/bobpay/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/js/all.js -------------------------------------------------------------------------------- /Ch5/bobpay/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/js/payment.js -------------------------------------------------------------------------------- /Ch5/bobpay/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/bobpay/js/scripts.js -------------------------------------------------------------------------------- /Ch5/charges/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/css/styles.css -------------------------------------------------------------------------------- /Ch5/charges/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/favicon.png -------------------------------------------------------------------------------- /Ch5/charges/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/background.png -------------------------------------------------------------------------------- /Ch5/charges/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/black.png -------------------------------------------------------------------------------- /Ch5/charges/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/brown.png -------------------------------------------------------------------------------- /Ch5/charges/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/hamburger.png -------------------------------------------------------------------------------- /Ch5/charges/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/purple.png -------------------------------------------------------------------------------- /Ch5/charges/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch5/charges/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/red.png -------------------------------------------------------------------------------- /Ch5/charges/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch5/charges/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/images/yellow.png -------------------------------------------------------------------------------- /Ch5/charges/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/index.html -------------------------------------------------------------------------------- /Ch5/charges/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/js/payment.js -------------------------------------------------------------------------------- /Ch5/charges/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/charges/js/scripts.js -------------------------------------------------------------------------------- /Ch5/nobob/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/css/styles.css -------------------------------------------------------------------------------- /Ch5/nobob/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/favicon.png -------------------------------------------------------------------------------- /Ch5/nobob/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/background.png -------------------------------------------------------------------------------- /Ch5/nobob/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/black.png -------------------------------------------------------------------------------- /Ch5/nobob/images/bobpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/bobpay.png -------------------------------------------------------------------------------- /Ch5/nobob/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/brown.png -------------------------------------------------------------------------------- /Ch5/nobob/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/hamburger.png -------------------------------------------------------------------------------- /Ch5/nobob/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/purple.png -------------------------------------------------------------------------------- /Ch5/nobob/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch5/nobob/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/red.png -------------------------------------------------------------------------------- /Ch5/nobob/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch5/nobob/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/images/yellow.png -------------------------------------------------------------------------------- /Ch5/nobob/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/index.html -------------------------------------------------------------------------------- /Ch5/nobob/js/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/js/payment.js -------------------------------------------------------------------------------- /Ch5/nobob/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/nobob/js/scripts.js -------------------------------------------------------------------------------- /Ch5/stripe/css/stripe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/stripe/css/stripe.css -------------------------------------------------------------------------------- /Ch5/stripe/example index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/stripe/example index.html -------------------------------------------------------------------------------- /Ch5/stripe/images/chillis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/stripe/images/chillis.png -------------------------------------------------------------------------------- /Ch5/stripe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/stripe/index.html -------------------------------------------------------------------------------- /Ch5/stripe/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/stripe/js/all.js -------------------------------------------------------------------------------- /Ch5/stripe/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch5/stripe/js/scripts.js -------------------------------------------------------------------------------- /Ch6/coffee/css/dart-sass/dart-sass.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/dart-sass/dart-sass.bat -------------------------------------------------------------------------------- /Ch6/coffee/css/dart-sass/sass.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/dart-sass/sass.bat -------------------------------------------------------------------------------- /Ch6/coffee/css/dart-sass/src/DART_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/dart-sass/src/DART_LICENSE -------------------------------------------------------------------------------- /Ch6/coffee/css/dart-sass/src/SASS_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/dart-sass/src/SASS_LICENSE -------------------------------------------------------------------------------- /Ch6/coffee/css/dart-sass/src/dart.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/dart-sass/src/dart.exe -------------------------------------------------------------------------------- /Ch6/coffee/css/dart-sass/src/sass.dart.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/dart-sass/src/sass.dart.snapshot -------------------------------------------------------------------------------- /Ch6/coffee/css/styles-BACKUP.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/styles-BACKUP.css -------------------------------------------------------------------------------- /Ch6/coffee/css/styles-sass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/styles-sass.scss -------------------------------------------------------------------------------- /Ch6/coffee/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/styles.css -------------------------------------------------------------------------------- /Ch6/coffee/css/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/css/styles.css.map -------------------------------------------------------------------------------- /Ch6/coffee/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/favicon.png -------------------------------------------------------------------------------- /Ch6/coffee/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/black.png -------------------------------------------------------------------------------- /Ch6/coffee/images/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/brown.png -------------------------------------------------------------------------------- /Ch6/coffee/images/latte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/latte.svg -------------------------------------------------------------------------------- /Ch6/coffee/images/long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/long.svg -------------------------------------------------------------------------------- /Ch6/coffee/images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/purple.png -------------------------------------------------------------------------------- /Ch6/coffee/images/recycling-bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/recycling-bin.png -------------------------------------------------------------------------------- /Ch6/coffee/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/red.png -------------------------------------------------------------------------------- /Ch6/coffee/images/shopping-basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/shopping-basket.png -------------------------------------------------------------------------------- /Ch6/coffee/images/short.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/short.svg -------------------------------------------------------------------------------- /Ch6/coffee/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/images/yellow.png -------------------------------------------------------------------------------- /Ch6/coffee/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/index.html -------------------------------------------------------------------------------- /Ch6/coffee/js/Examples/payment - basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/js/Examples/payment - basic.js -------------------------------------------------------------------------------- /Ch6/coffee/js/Examples/payment - bobpay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/js/Examples/payment - bobpay.js -------------------------------------------------------------------------------- /Ch6/coffee/js/Examples/payment - charges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/js/Examples/payment - charges.js -------------------------------------------------------------------------------- /Ch6/coffee/js/Examples/payment - errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/js/Examples/payment - errors.js -------------------------------------------------------------------------------- /Ch6/coffee/js/Examples/payment - shipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/js/Examples/payment - shipping.js -------------------------------------------------------------------------------- /Ch6/coffee/js/payment - completed version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/js/payment - completed version.js -------------------------------------------------------------------------------- /Ch6/coffee/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch6/coffee/js/scripts.js -------------------------------------------------------------------------------- /Ch7/cookies/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/css/bootstrap.min.css -------------------------------------------------------------------------------- /Ch7/cookies/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/css/styles.css -------------------------------------------------------------------------------- /Ch7/cookies/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Ch7/cookies/images/cbakewell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/cbakewell.png -------------------------------------------------------------------------------- /Ch7/cookies/images/coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/coconut.png -------------------------------------------------------------------------------- /Ch7/cookies/images/dark-choc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/dark-choc.png -------------------------------------------------------------------------------- /Ch7/cookies/images/double-choc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/double-choc.png -------------------------------------------------------------------------------- /Ch7/cookies/images/jaffa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/jaffa.png -------------------------------------------------------------------------------- /Ch7/cookies/images/oatmeal-rasin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/oatmeal-rasin.png -------------------------------------------------------------------------------- /Ch7/cookies/images/rasberry-white-choc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/rasberry-white-choc.png -------------------------------------------------------------------------------- /Ch7/cookies/images/toffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/toffee.png -------------------------------------------------------------------------------- /Ch7/cookies/images/white-choc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/images/white-choc.png -------------------------------------------------------------------------------- /Ch7/cookies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/index.html -------------------------------------------------------------------------------- /Ch7/cookies/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/js/bootstrap.min.js -------------------------------------------------------------------------------- /Ch7/cookies/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/js/script.js -------------------------------------------------------------------------------- /Ch7/cookies/js/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/cookies/js/vue.min.js -------------------------------------------------------------------------------- /Ch7/geolocate/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/css/bootstrap.min.css -------------------------------------------------------------------------------- /Ch7/geolocate/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/css/styles.css -------------------------------------------------------------------------------- /Ch7/geolocate/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Ch7/geolocate/images/cbakewell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/cbakewell.png -------------------------------------------------------------------------------- /Ch7/geolocate/images/coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/coconut.png -------------------------------------------------------------------------------- /Ch7/geolocate/images/dark-choc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/dark-choc.png -------------------------------------------------------------------------------- /Ch7/geolocate/images/double-choc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/double-choc.png -------------------------------------------------------------------------------- /Ch7/geolocate/images/jaffa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/jaffa.png -------------------------------------------------------------------------------- /Ch7/geolocate/images/oatmeal-rasin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/oatmeal-rasin.png -------------------------------------------------------------------------------- /Ch7/geolocate/images/rasberry-white-choc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/rasberry-white-choc.png -------------------------------------------------------------------------------- /Ch7/geolocate/images/toffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/toffee.png -------------------------------------------------------------------------------- /Ch7/geolocate/images/white-choc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/images/white-choc.png -------------------------------------------------------------------------------- /Ch7/geolocate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/index.html -------------------------------------------------------------------------------- /Ch7/geolocate/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/js/bootstrap.min.js -------------------------------------------------------------------------------- /Ch7/geolocate/js/jquery.qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/js/jquery.qrcode.min.js -------------------------------------------------------------------------------- /Ch7/geolocate/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/js/script.js -------------------------------------------------------------------------------- /Ch7/geolocate/js/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch7/geolocate/js/vue.min.js -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/app.js -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/css/style.css -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/favicon.ico -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/images/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/images/coffee.png -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/index.html -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/installer.js -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/manifest.json -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/testing/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/testing/coffee.png -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/testing/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/testing/css/style.css -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/testing/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/testing/favicon.ico -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/testing/js/merchant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/testing/js/merchant.js -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/testing/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/testing/js/util.js -------------------------------------------------------------------------------- /Ch8/basiccard - completed version/testing/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Ch8/basiccard - completed version/testing/test.html -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/README.md -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/checking-out-with-the-payment-request-API/HEAD/errata.md --------------------------------------------------------------------------------