aboutsummaryrefslogtreecommitdiff
path: root/donate
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2016-11-15 09:56:40 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2016-11-15 09:56:40 -0800
commitb451fae0e5ff70b38adc2ec1c469a6463fd476b4 (patch)
tree7a6d8a4a2e327053adbd07ab19b1316c600c03af /donate
parentAdd security auditing contact to security support section. (diff)
downloadwww-b451fae0e5ff70b38adc2ec1c469a6463fd476b4.tar.gz
www-b451fae0e5ff70b38adc2ec1c469a6463fd476b4.tar.bz2
www-b451fae0e5ff70b38adc2ec1c469a6463fd476b4.zip
Donation button was broken for a month :-(.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'donate')
-rw-r--r--donate/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/donate/index.html b/donate/index.html
index d36d368..7b105ed 100644
--- a/donate/index.html
+++ b/donate/index.html
@@ -32,7 +32,7 @@ layout: tyrian
function validate_donation_form() {
var input_field = $('#donation-amount');
- var amount_str = input_field.value;
+ var amount_str = input_field[0].value;
var amount_num = +amount_str; // unary conversion op
if (isNaN(amount_num) || amount_num < 5.00) {
$('#donation-input-group').addClass('has-error');