I notice that some button rolls do not pick up updated `<input type="number"` fields. This only occurs when popping the character sheet out of the game into its own popup window. Test HTML: <h1>Bug: Plain field updates are not used in Dice Rolls</h1>
<h2>Setup up character</h2>
<ol>
<li>Open character sheet in a popout</li>
<li>Add a repeating field attribute</li>
</ol>
<h2>Demonstrate the bug</h2>
<p>IMPORTANT: This bug only occurs when the character sheet is popped out of the window</p>
<ol>
<li>Update the plain field value</li>
<li>Do not click away from field</li>
<li>Click on roll die button</li>
<li>Observe that the roll used the old field value</li>
<li>Expect that the roll used the updated field value</li>
<li>Compare to repeated field that works as expected</li>
</ol>
<p>plain field</p>
<div>
<p>Updating this input and then clicking the button <b>will not</b> pick up the update <b>in popup window</b></p>
<input type="number" name="attr_test1" value="0" />
<button type="roll" value="/roll 1d20 + @{test1}">
</div>
<hr />
<p>Repeating fields</p>
<fieldset class="repeating_skill">
<p>Updating this input and then clicking the button <b>will</b> pick up the update <b>in popup window</b></p>
<input name="attr_skillmodifier" type="number">
<button type="roll" value="/roll 1d20 + @{skillmodifier}">
</fieldset>
Example Playground: <a href="https://app.roll20.net/campaigns/campaignsettings/14386568" rel="nofollow">https://app.roll20.net/campaigns/campaignsettings/14386568</a> Any suggestions?