rename /rpg-docs to /app
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<template name="noteDialog">
|
||||
{{#with note}}
|
||||
{{#baseDialog title=name class=colorClass startEditing=../startEditing}}
|
||||
<div>{{#markdown}}{{evaluateString charId description}}{{/markdown}}</div>
|
||||
{{else}}
|
||||
{{> noteDialogEdit}}
|
||||
{{/baseDialog}}
|
||||
{{/with}}
|
||||
</template>
|
||||
|
||||
<template name="noteDialogEdit">
|
||||
<!--Name-->
|
||||
<div class="horizontal layout">
|
||||
<paper-input id="noteNameInput"
|
||||
label="Name"
|
||||
value={{name}}
|
||||
class="flex">
|
||||
</paper-input>
|
||||
</div>
|
||||
<!--Description, formatting this nicely breaks it, leave it as is-->
|
||||
<paper-textarea id="noteDescriptionInput" label="Description" value={{description}}></paper-textarea>
|
||||
</template>
|
||||
Reference in New Issue
Block a user