2018-06-19 18:13:20 +02:00

36 lines
825 B
Handlebars

{{#if fileLoaded}}
{{#if isBinary}}
{{#if isImage}}
<img src={{objectURL}} alt={{metaData.name}}>
{{else}}
<p>No preview available for this content type.</p>
{{/if}}
{{/if}}
{{#if isText}}
{{#if isJSON}}
{{#if jsonShowTree}}
<div id="json-tree-view"></div>
{{else}}
<code>{{fileContent}}</code>
{{/if}}
{{else}}
<code>{{fileContent}}</code>
{{/if}}
{{/if}}
{{#if showEditor}}
<div class="actions">
<button {{action "saveChanges"}}
disabled={{uploadingChanges}}
class="primary">
Save changes
</button>
<button {{action "cancelEditor"}}
disabled={{uploadingChanges}}
class="secondary">
Cancel editing
</button>
</div>
{{/if}}
{{/if}}