Skip to content

Commit

Permalink
Merge pull request #5914 from Fedik/fix-ie-fireevent
Browse files Browse the repository at this point in the history
Fix form submit in IE
  • Loading branch information
wilsonge committed Jan 29, 2015
2 parents 7b9b9ac + d310866 commit 482d86a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion media/system/js/core-uncompressed.js
Expand Up @@ -27,7 +27,7 @@ Joomla.submitform = function(task, form) {
form.onsubmit();
}
if (typeof form.fireEvent == "function") {
form.fireEvent('submit');
form.fireEvent('onsubmit');
}
form.submit();
};
Expand Down
2 changes: 1 addition & 1 deletion media/system/js/core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 482d86a

Please sign in to comment.