apply type="button" on all buttons to make submit on enter work
This commit is contained in:
parent
3814200452
commit
4e14b29537
@ -79,8 +79,8 @@ $.fn.bookmarktable = function() {
|
||||
} else {
|
||||
cell.html(
|
||||
'<div class="btn-group btn-group-sm">' +
|
||||
'<button class="btn btn-primary bookmark-save">Save</button>' +
|
||||
'<button class="btn btn-secondary bookmark-cancel">Cancel</button>' +
|
||||
'<button type="button" class="btn btn-primary bookmark-save">Save</button>' +
|
||||
'<button type="button" class="btn btn-secondary bookmark-cancel">Cancel</button>' +
|
||||
'</div>'
|
||||
);
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ $.fn.wsjtDecodingDepthsInput = function() {
|
||||
this.modeInput.val(mode);
|
||||
this.valueInput = $(inputs.get(1)).clone();
|
||||
this.valueInput.val(value);
|
||||
this.removeButton = $('<button class="btn btn-sm btn-danger remove">Remove</button>');
|
||||
this.removeButton = $('<button type="button" class="btn btn-sm btn-danger remove">Remove</button>');
|
||||
this.removeButton.data('row', this);
|
||||
this.el.append([this.modeInput, this.valueInput, this.removeButton].map(function(i) {
|
||||
return $('<td>').append(i);
|
||||
@ -46,7 +46,7 @@ $.fn.wsjtDecodingDepthsInput = function() {
|
||||
|
||||
$table.on('change', updateValue);
|
||||
$el.append($table);
|
||||
var $addButton = $('<button class="btn btn-sm btn-primary">Add...</button>');
|
||||
var $addButton = $('<button type="button" class="btn btn-sm btn-primary">Add...</button>');
|
||||
|
||||
$addButton.on('click', function() {
|
||||
var row = new WsjtDecodingDepthRow(inputs)
|
||||
|
@ -20,7 +20,7 @@ ${header}
|
||||
<div class="bookmarks">
|
||||
${bookmarks}
|
||||
<div class="buttons container">
|
||||
<button class="btn btn-primary bookmark-add">Add a new bookmark</button>
|
||||
<button type="button" class="btn btn-primary bookmark-add">Add a new bookmark</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -55,7 +55,7 @@ class BookmarksController(AuthorizationMixin, WebpageController):
|
||||
<td class="frequency">{frequency}</td>
|
||||
<td data-value="{modulation}">{modulation_name}</td>
|
||||
<td>
|
||||
<button class="btn btn-sm btn-danger bookmark-delete">delete</button>
|
||||
<button type="button" class="btn btn-sm btn-danger bookmark-delete">delete</button>
|
||||
</td>
|
||||
</tr>
|
||||
""".format(
|
||||
|
@ -42,7 +42,7 @@ class Input(ABC):
|
||||
input=input,
|
||||
infotext=infotext,
|
||||
removable="removable" if self.removable else "",
|
||||
removebutton='<button class="btn btn-sm btn-danger option-remove-button">Remove</button>'
|
||||
removebutton='<button type="button" class="btn btn-sm btn-danger option-remove-button">Remove</button>'
|
||||
if self.removable
|
||||
else "",
|
||||
)
|
||||
|
@ -227,7 +227,7 @@ class SchedulerInput(Input):
|
||||
<div class="row scheduler-static-time-inputs">
|
||||
{time_inputs}
|
||||
{select}
|
||||
<button class="btn btn-sm btn-danger remove-button">X</button>
|
||||
<button type="button" class="btn btn-sm btn-danger remove-button">X</button>
|
||||
</div>
|
||||
""".format(
|
||||
time_inputs=render_time_inputs(slot),
|
||||
@ -241,10 +241,10 @@ class SchedulerInput(Input):
|
||||
<div class="row scheduler-static-time-inputs template" style="display: none;">
|
||||
{time_inputs}
|
||||
{select}
|
||||
<button class="btn btn-sm btn-danger remove-button">X</button>
|
||||
<button type="button" class="btn btn-sm btn-danger remove-button">X</button>
|
||||
</div>
|
||||
<div class="row">
|
||||
<button class="btn btn-sm btn-primary col-12 add-button">Add...</button>
|
||||
<button type="button" class="btn btn-sm btn-primary col-12 add-button">Add...</button>
|
||||
</div>
|
||||
""".format(
|
||||
rows=rows,
|
||||
|
@ -11,8 +11,8 @@ class ImageInput(Input, metaclass=ABCMeta):
|
||||
<div class="image-container">
|
||||
<img class="{classes}" src="{url}" alt="{label}"/>
|
||||
</div>
|
||||
<button class="btn btn-primary upload">Upload new image...</button>
|
||||
<button class="btn btn-secondary restore">Restore original image</button>
|
||||
<button type="button" class="btn btn-primary upload">Upload new image...</button>
|
||||
<button type="button" class="btn btn-secondary restore">Restore original image</button>
|
||||
</div>
|
||||
""".format(
|
||||
id=self.id, label=self.label, url=self.cachebuster(self.getUrl()), classes=" ".join(self.getImgClasses())
|
||||
|
@ -415,7 +415,7 @@ class OptionalSection(Section):
|
||||
{options}
|
||||
</select>
|
||||
<div class="input-group-append">
|
||||
<button class="btn btn-success option-add-button">Add</button>
|
||||
<button type="button" class="btn btn-success option-add-button">Add</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user