mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -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 warnings: string[] = [];
|
||||||
export let defaultValue: number = 0;
|
export let defaultValue: number = 0;
|
||||||
|
|
||||||
$: if (value > max) {
|
function checkMinMax() {
|
||||||
value = max;
|
if (value > max) {
|
||||||
} else if (value < min) {
|
value = max;
|
||||||
value = min;
|
} else if (value < min) {
|
||||||
|
value = min;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ConfigEntry {label} {tooltip} {warnings} bind:value {defaultValue}>
|
<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>
|
</ConfigEntry>
|
||||||
|
|
Loading…
Reference in a new issue