import_functions: use a button type=submit instead of an input

It is easier to style, same behavior.
This commit is contained in:
Laurent Monin 2015-06-14 14:11:39 +02:00
parent b7a52ff58c
commit c3899a73b4

View file

@ -106,7 +106,7 @@ var MBReleaseImportHelper = (function() {
innerHTML += "<input type='hidden' value='" + value.replace(/'/g,"&apos;") + "' name='" + parameter.name + "'/>";
});
innerHTML += '<input type="submit" value="Import into MB">';
innerHTML += '<button type="submit">Import into MB</button>';
innerHTML += '</form>';
return innerHTML;