diff --git a/static/js/pandora/contactForm.js b/static/js/pandora/contactForm.js index be72c9242..bb91c0afe 100644 --- a/static/js/pandora/contactForm.js +++ b/static/js/pandora/contactForm.js @@ -98,6 +98,10 @@ pandora.ui.contactForm = function() { .bindEvent({ click: function() { var data = $form.values(); + $sendButton.options({ + disabled: true, + title: 'Sending Message...' + }); pandora.api.contact({ name: data.name, email: data.email, @@ -122,6 +126,10 @@ pandora.ui.contactForm = function() { title: 'Message Sent' }) .open(); + $sendButton.options({ + disabled: false, + title: 'Send Message' + }); }); }