Merged r9391 from trunk.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@9403 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-04-14 04:58:46 +00:00
parent baa4ebd05f
commit 4c330a1241

View File

@ -520,4 +520,16 @@ function hideOnLoad() {
});
}
function addFormObserversForDoubleSubmit() {
$$('form[method=post]').each(function(el) {
Event.observe(el, 'submit', function(e) {
var form = Event.element(e);
form.select('input[type=submit]').each(function(btn) {
btn.disable();
});
});
});
}
Event.observe(window, 'load', hideOnLoad);
Event.observe(window, 'load', addFormObserversForDoubleSubmit);