Character text fields now work. Slightly modified versions will be needed for Spells, features, etc.
9 lines
225 B
HTML
9 lines
225 B
HTML
<template name="textField">
|
|
{{#if editing}}
|
|
<div id="textInput" class={{outputClass}} contenteditable=true>{{input}}</div>
|
|
{{else}}
|
|
<div id="textOutput" class={{outputClass}}>
|
|
{{output}}
|
|
</div>
|
|
{{/if}}
|
|
</template> |