Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8c16ab4

Browse files
committed
Merge pull request #112 from niveus/new-button
Add async attribute to Readme
2 parents 3e8c6f1 + 14db371 commit 8c16ab4

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Perfect for use with Express Checkout or other API-based solutions
1313
```html
1414
<script src="paypal-button.min.js?merchant=YOUR_MERCHANT_ID"
1515
data-button="buynow"
16+
async
1617
></script>
1718
```
1819

@@ -34,6 +35,7 @@ Buy Now buttons are for single item purchases.
3435
data-type="form"
3536
data-name="My product"
3637
data-amount="1.00"
38+
async
3739
></script>
3840
```
3941

@@ -49,6 +51,7 @@ Add To Cart buttons let users add multiple items to their PayPal cart.
4951
data-type="form"
5052
data-name="Product in your cart"
5153
data-amount="1.00"
54+
async
5255
></script>
5356
```
5457

@@ -61,6 +64,7 @@ QR codes can be easily scanned with a smart phone to check out.
6164
data-type="qr"
6265
data-name="Product via QR code"
6366
data-amount="1.00"
67+
async
6468
></script>
6569
```
6670

@@ -73,6 +77,7 @@ Donation buttons let you accept donations from your users.
7377
data-type="form"
7478
data-name="My donation"
7579
data-amount="1.00"
80+
async
7681
></script>
7782
```
7883

@@ -87,6 +92,7 @@ Subscribe buttons let you set up payment subscriptions.
8792
data-amount="1.00"
8893
data-recurrence="1"
8994
data-period="M"
95+
async
9096
></script>
9197
```
9298

test/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ <h2>Buy Now (Small)</h2>
1818
data-amount="1.00"
1919
data-size="small"
2020
data-callback="http://example.com/callback"
21+
async
2122
></script>
2223
</div>
2324

@@ -29,6 +30,7 @@ <h2>Buy Now (Medium)</h2>
2930
data-name="Buy now!"
3031
data-amount="1.00"
3132
data-size="medium"
33+
async
3234
></script>
3335
</div>
3436

@@ -40,6 +42,7 @@ <h2>Buy Now (Large)</h2>
4042
data-name="Buy now!"
4143
data-amount="1.00"
4244
data-size="large"
45+
async
4346
></script>
4447
</div>
4548

@@ -53,6 +56,7 @@ <h2>Buy Now (Small; Secondary)</h2>
5356
data-size="small"
5457
data-style="secondary"
5558
data-callback="http://example.com/callback"
59+
async
5660
></script>
5761
</div>
5862

@@ -65,6 +69,7 @@ <h2>Buy Now (Medium; Secondary)</h2>
6569
data-amount="1.00"
6670
data-style="secondary"
6771
data-size="medium"
72+
async
6873
></script>
6974
</div>
7075

@@ -77,6 +82,7 @@ <h2>Buy Now (Large; Secondary)</h2>
7782
data-amount="1.00"
7883
data-style="secondary"
7984
data-size="large"
85+
async
8086
></script>
8187
</div>
8288

@@ -89,6 +95,7 @@ <h2>Buy Now (Sandbox)</h2>
8995
data-amount="1.00"
9096
data-size="small"
9197
data-env="sandbox"
98+
async
9299
></script>
93100
</div>
94101

@@ -101,6 +108,7 @@ <h2>Buy Now (Spanish)</h2>
101108
data-amount="1.00"
102109
data-locale="es_ES"
103110
data-currency="EUR"
111+
async
104112
></script>
105113
</div>
106114

@@ -112,6 +120,7 @@ <h2>Buy Now (Japanese)</h2>
112120
data-name="Buy now!"
113121
data-amount="1.00"
114122
data-locale="ja_JP"
123+
async
115124
></script>
116125
</div>
117126

@@ -124,6 +133,7 @@ <h2>Buy Now (German)</h2>
124133
data-amount="1.00"
125134
data-locale="de_DE"
126135
data-currency="EUR"
136+
async
127137
></script>
128138
</div>
129139

@@ -136,6 +146,7 @@ <h2>Buy Now (Editable)</h2>
136146
data-amount-editable="1.00"
137147
data-quantity-editable="1"
138148
data-locale="en_US"
149+
async
139150
></script>
140151
</div>
141152

@@ -147,6 +158,7 @@ <h2>Cart (Small)</h2>
147158
data-name="Add to cart!"
148159
data-amount="1.00"
149160
data-size="small"
161+
async
150162
></script>
151163
</div>
152164

@@ -158,6 +170,7 @@ <h2>Cart (Medium)</h2>
158170
data-name="Add to cart!"
159171
data-amount="1.00"
160172
data-size="medium"
173+
async
161174
></script>
162175
</div>
163176

@@ -169,6 +182,7 @@ <h2>Cart (Large)</h2>
169182
data-name="Add to cart!"
170183
data-amount="1.00"
171184
data-size="large"
185+
async
172186
></script>
173187
</div>
174188

@@ -180,6 +194,7 @@ <h2>Donate (Small)</h2>
180194
data-name="Donate!"
181195
data-amount="1.00"
182196
data-size="small"
197+
async
183198
></script>
184199
</div>
185200

@@ -191,6 +206,7 @@ <h2>Donate (Medium)</h2>
191206
data-name="Donate!"
192207
data-amount="1.00"
193208
data-size="medium"
209+
async
194210
></script>
195211
</div>
196212

@@ -202,6 +218,7 @@ <h2>Donate (Large)</h2>
202218
data-name="Donate!"
203219
data-amount="1.00"
204220
data-size="large"
221+
async
205222
></script>
206223
</div>
207224

@@ -215,6 +232,7 @@ <h2>Subscribe (Small)</h2>
215232
data-amount="1.00"
216233
data-recurrence="1"
217234
data-period="M"
235+
async
218236
></script>
219237
</div>
220238

@@ -228,6 +246,7 @@ <h2>Subscribe (Medium)</h2>
228246
data-amount="1.00"
229247
data-recurrence="1"
230248
data-period="M"
249+
async
231250
></script>
232251
</div>
233252

@@ -241,6 +260,7 @@ <h2>Subscribe (Large)</h2>
241260
data-amount="1.00"
242261
data-recurrence="1"
243262
data-period="M"
263+
async
244264
></script>
245265
</div>
246266

@@ -265,6 +285,7 @@ <h2>Hosted button</h2>
265285
data-option2required="true"
266286
data-option2pattern="alphaNumericRegex"
267287
data-option2select0=""
288+
async
268289
>
269290
</script>
270291
</div>
@@ -274,6 +295,7 @@ <h2>Button Only</h2>
274295
<script src="../src/paypal-button.js?merchant=6XF3MPZBZV6HU"
275296
data-button="buynow"
276297
data-type="button"
298+
async
277299
></script>
278300
</div>
279301

@@ -284,6 +306,7 @@ <h2>QR Code</h2>
284306
data-name="Buy from a QR code!"
285307
data-amount="1.00"
286308
data-size="250"
309+
async
287310
></script>
288311
</div>
289312

0 commit comments

Comments
 (0)