Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/rapidhtml/html/webitects_1.html |
— | — | @@ -196,7 +196,7 @@ |
197 | 197 | <p><a href="https://www.mediawiki.org/wiki/Ways_to_Give/en">More information or other ways to give</a><br /><a href="https://www.mediawiki.org/wiki/FAQ/en">Answers to frequently asked questions</a></p> |
198 | 198 | </div> |
199 | 199 | </div> |
200 | | - <!-- load jquery 1.4.2 --> |
| 200 | + <!-- load jquery (newer) --> |
201 | 201 | <script type='text/javascript' src='@script_path/extensions/DonationInterface/payflowpro_gateway/forms/rapidhtml/js/jquery.js'></script> |
202 | 202 | <script type='text/javascript' src='@script_path/extensions/DonationInterface/payflowpro_gateway/forms/rapidhtml/js/jquery.ui.core.js'></script> |
203 | 203 | <script type='text/javascript' src='@script_path/extensions/DonationInterface/payflowpro_gateway/forms/rapidhtml/js/jquery.ui.widget.js'></script> |
— | — | @@ -284,8 +284,8 @@ |
285 | 285 | |
286 | 286 | function validateAmount(){ |
287 | 287 | var minimums = { |
288 | | - 'USD' : 1, |
289 | | - } |
| 288 | + 'USD' : 1 |
| 289 | + }; |
290 | 290 | var error = true; |
291 | 291 | var amount = $("input[name=amount]").val(); // get the amount |
292 | 292 | var otherAmount = amount // create a working copy |
Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/rapidhtml/html/webitects_1a.html |
— | — | @@ -284,8 +284,8 @@ |
285 | 285 | |
286 | 286 | function validateAmount(){ |
287 | 287 | var minimums = { |
288 | | - 'USD' : 1, |
289 | | - } |
| 288 | + 'USD' : 1 |
| 289 | + }; |
290 | 290 | var error = true; |
291 | 291 | var amount = $("input[name=amount]").val(); // get the amount |
292 | 292 | var otherAmount = amount // create a working copy |
Index: trunk/extensions/DonationInterface/payflowpro_gateway/forms/rapidhtml/html/webitects_2.html |
— | — | @@ -26,9 +26,11 @@ |
27 | 27 | } |
28 | 28 | #amount-table-white label { font-size: 1.1em; } |
29 | 29 | |
| 30 | + #donate-body { width: 348px; } |
30 | 31 | #donate-body h3 { font-size: 17px; } |
31 | 32 | |
32 | | - #where-content { font-size: 13px; line-height: 19px; } |
| 33 | + #step2wrapper { width: 325px; } |
| 34 | + #where-content { font-size: 13px; line-height: 19px; width: 325px; } |
33 | 35 | |
34 | 36 | </style> |
35 | 37 | |
— | — | @@ -74,7 +76,7 @@ |
75 | 77 | </table> |
76 | 78 | |
77 | 79 | <p class="donate-options"> |
78 | | - <input class="btn" id="cc" type="button" value="Donate by Credit Card" /> |
| 80 | + <input class="btn" id="cc" type="button" value="Donate by Credit Card" /><br /> |
79 | 81 | <input class="btn" id="pp" type="button" value="Donate via PayPal"/><span id='loading'></span> |
80 | 82 | </p> |
81 | 83 | </div> |
— | — | @@ -315,8 +317,8 @@ |
316 | 318 | |
317 | 319 | function validateAmount(){ |
318 | 320 | var minimums = { |
319 | | - 'USD' : 1, |
320 | | - } |
| 321 | + 'USD' : 1 |
| 322 | + }; |
321 | 323 | var error = true; |
322 | 324 | var amount = $("input[name=amount]").val(); // get the amount |
323 | 325 | var otherAmount = amount // create a working copy |