Prevent partial-updates from being overwritten when adding/deleting a dice (closes #87)
This commit is contained in:
parent
2a7d485ab4
commit
29a1e0eacf
2 changed files with 26 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
|||
class="count"
|
||||
name="{{die.id}}.count"
|
||||
value="{{die.count}}"
|
||||
data-die-update="{{die.id}}.count"
|
||||
aria-label="The number of dice to roll at the same time"
|
||||
>
|
||||
<span class="large" aria-hidden="true">d</span>
|
||||
|
|
@ -17,6 +18,7 @@
|
|||
class="sides"
|
||||
name="{{die.id}}.sides"
|
||||
value="{{die.sides}}"
|
||||
data-die-update="{{die.id}}.sides"
|
||||
aria-label="The number of sides that are on the dice"
|
||||
>
|
||||
<span class="large" aria-hidden="true">x</span>
|
||||
|
|
@ -26,6 +28,7 @@
|
|||
class="repeat"
|
||||
name="{{die.id}}.repeat"
|
||||
value="{{die.repeat}}"
|
||||
data-die-update="{{die.id}}.repeat"
|
||||
aria-label="The number of times to repeat this dice "
|
||||
>
|
||||
<button
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue