commit/galaxy-central: dan: Fix for bug reporting in Chrome (webkit), due to it not properly handling forms with disabled submit buttons.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/2d8ab92940fb/ Changeset: 2d8ab92940fb User: dan Date: 2014-04-16 19:28:22 Summary: Fix for bug reporting in Chrome (webkit), due to it not properly handling forms with disabled submit buttons. Affected #: 1 file diff -r bd1abde45a4132a9d8297a76731245062be14440 -r 2d8ab92940fb7f7ee42b8a7478fd9f4406d401d3 templates/webapps/galaxy/dataset/errors.mako --- a/templates/webapps/galaxy/dataset/errors.mako +++ b/templates/webapps/galaxy/dataset/errors.mako @@ -39,7 +39,8 @@ hiddenInput.name = button.name; hiddenInput.value = button.value; form.appendChild( hiddenInput ); - return true; + form.submit(); + return false; } return false; } Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org