Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoiding double-submit issues in change_form with a bit of JS #147

Merged
merged 2 commits into from
Sep 17, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions suit/static/suit/js/suit.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,23 @@
activate_tabs();
};

/**
* Avoids double-submit issues in the change_form.
*/
$.fn.suit_form_debounce = function() {
var $form = $(this),
$saveButtons = $form.find('.save-box button'),
submitting = false;

$form.submit(function() {
if (submitting) {
return false;
}

submitting = true;
$saveButtons.addClass('disabled');
});
};

$(function () {

Expand Down
8 changes: 8 additions & 0 deletions suit/templates/admin/change_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@
}(Suit.$))
</script>
{% endif %}

<script>
(function ($) {
$(function () {
$("#{{ opts.module_name }}_form").suit_form_debounce();
});
}(Suit.$))
</script>

{% endblock %}

Expand Down