Corrected #convertForm 'on submit' event handler
#convertForm 'on submit' event handler needs event object as an argument.
This commit is contained in:
parent
baecd043aa
commit
02912f7605
@ -58,7 +58,7 @@
|
||||
crossorigin="anonymous"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
$('#convertForm').submit(function() {
|
||||
$('#convertForm').submit(function(event) {
|
||||
event.preventDefault();
|
||||
$.ajax({
|
||||
url: '/api/convert',
|
||||
|
Loading…
Reference in New Issue
Block a user