change how to submit the form to stop ff to hang, this fixes #13037

This commit is contained in:
maartenkling 2012-10-25 21:46:57 +02:00
parent cea0ebbfb2
commit cb14c4f89e
1 changed files with 20 additions and 20 deletions

View File

@ -120,7 +120,7 @@
**********************************************************************/
$("form#DiscussionSettingsEditForm").bind("submit", function (e) {
$(this).find("input,select").removeAttr('disabled');
$(this).submit();
$("form#DiscussionSettingsEditForm").submit();
});
});