fix #1443 (disable send button while sending contact message)
This commit is contained in:
parent
f9f1a119a2
commit
977abe6dc4
1 changed files with 8 additions and 0 deletions
|
@ -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'
|
||||
});
|
||||
});
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue