mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-12 19:32:27 +00:00
import_functions: use a button type=submit instead of an input
It is easier to style, same behavior.
This commit is contained in:
parent
b7a52ff58c
commit
c3899a73b4
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ var MBReleaseImportHelper = (function() {
|
|||
innerHTML += "<input type='hidden' value='" + value.replace(/'/g,"'") + "' name='" + parameter.name + "'/>";
|
||||
});
|
||||
|
||||
innerHTML += '<input type="submit" value="Import into MB">';
|
||||
innerHTML += '<button type="submit">Import into MB</button>';
|
||||
innerHTML += '</form>';
|
||||
|
||||
return innerHTML;
|
||||
|
|
Loading…
Reference in a new issue