28 lines
686 B
HTML
28 lines
686 B
HTML
<template name="characterSettings">
|
|
{{#with character}}
|
|
<div style="height: 100px;">
|
|
<table style="width: 100%;">
|
|
<tr>
|
|
<td>Hide Spells tab</td>
|
|
<td>
|
|
<paper-toggle-button id="hideSpellcasting"
|
|
checked={{settings.hideSpellcasting}}
|
|
touch-action="pan-y">
|
|
</paper-toggle-button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Use variant encumbrance</td>
|
|
<td>
|
|
<paper-toggle-button id="variantEncumbrance"
|
|
checked={{settings.useVariantEncumbrance}}
|
|
touch-action="pan-y">
|
|
</paper-toggle-button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{{/with}}
|
|
<paper-button id="doneButton" affirmative> Done </paper-button>
|
|
</template>
|