mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
defer bounds checking in SpinBox to focus loss
The previous behaviour was preventing a backspace to remove the current text when a minimum of 1 or greater was supplied
This commit is contained in:
parent
f77983fc9f
commit
8475e7829b
1 changed files with 13 additions and 5 deletions
|
@ -13,13 +13,21 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
export let warnings: string[] = [];
|
||||
export let defaultValue: number = 0;
|
||||
|
||||
$: if (value > max) {
|
||||
value = max;
|
||||
} else if (value < min) {
|
||||
value = min;
|
||||
function checkMinMax() {
|
||||
if (value > max) {
|
||||
value = max;
|
||||
} else if (value < min) {
|
||||
value = min;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<ConfigEntry {label} {tooltip} {warnings} bind:value {defaultValue}>
|
||||
<input type="number" {min} {max} bind:value class="form-control" />
|
||||
<input
|
||||
type="number"
|
||||
{min}
|
||||
{max}
|
||||
bind:value
|
||||
class="form-control"
|
||||
on:blur={checkMinMax} />
|
||||
</ConfigEntry>
|
||||
|
|
Loading…
Reference in a new issue