-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24f42b2
commit 485ad90
Showing
2 changed files
with
7 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,8 @@ | ||
<li><a href="#" {{action (mut showRollDice) true}}>Roll Dice</a></li> | ||
|
||
{{#bs-modal-simple | ||
title="Roll Dice" | ||
closeTitle="Cancel" | ||
submitTitle="Roll" | ||
size=null | ||
fade=false | ||
open=showRollDice | ||
onSubmit=(action "rollDice") | ||
onHide=(action (mut showRollDice) null)}} | ||
|
||
{{input type="text" size=25 id="diceString" value=diceString}} | ||
<p class="hint">Enter a dice string in the form 5d6 or 2d10.</p> | ||
|
||
{{/bs-modal-simple}} | ||
<BsModalSimple @title="Roll Dice" @closeTitle="Cancel" @submitTitle="Roll" @size={{null}} @fade={{false}} @open={{showRollDice}} @onSubmit={{action "rollDice"}} @onHide={{action (mut showRollDice) false}}> | ||
|
||
{{input type="text" size=25 id="diceString" value=diceString}} | ||
<p class="hint">Enter a dice string in the form 5d6 or 2d10.</p> | ||
|
||
</BsModalSimple> |