| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 /* global PaymentRequest:false */ | |
| 8 | |
| 9 /** | |
| 10 * Launches the PaymentRequest UI with Bob Pay and credit cards as payment | |
| 11 * methods. | |
| 12 */ | |
| 13 function buy() { // eslint-disable-line no-unused-vars | |
| 14 try { | |
| 15 new PaymentRequest( | |
| 16 [{supportedMethods: ['https://bobpay.com', 'visa', 'mastercard']}], | |
| 17 {total: {label: 'Total', amount: {currency: 'USD', value: '5.00'}}}) | |
| 18 .show() | |
| 19 .then(function(resp) { | |
| 20 resp.complete('success') | |
| 21 .then(function() { | |
| 22 print(resp.methodName + '<br>' + | |
| 23 JSON.stringify(resp.details, undefined, 2)); | |
| 24 }) | |
| 25 .catch(function(error) { | |
| 26 print(error.message); | |
| 27 }); | |
| 28 }) | |
| 29 .catch(function(error) { | |
| 30 print(error.message); | |
| 31 }); | |
| 32 } catch (error) { | |
| 33 print(error.message); | |
| 34 } | |
| 35 } | |
| OLD | NEW |