2015-03-16 02:05:27 -04:00
|
|
|
<!-- TODO Precompile ember templates -->
|
|
|
|
|
|
|
|
|
|
<script type="text/x-handlebars" data-template-name="demo">
|
2015-04-22 21:48:24 -04:00
|
|
|
{{outlet}}
|
2015-03-16 02:05:27 -04:00
|
|
|
</script>
|
|
|
|
|
|
2015-04-22 18:09:12 -04:00
|
|
|
<script type="text/x-handlebars" data-template-name="demo/step">
|
2015-04-22 23:21:15 -04:00
|
|
|
|
2015-04-22 21:48:24 -04:00
|
|
|
<div class="instruction-wrapper">
|
2015-04-22 18:09:12 -04:00
|
|
|
<div class="instruction">
|
2015-04-22 23:21:15 -04:00
|
|
|
<p>
|
|
|
|
|
<strong>{{model.humanName}}</strong>
|
|
|
|
|
</p>
|
|
|
|
|
|
2015-04-22 18:09:12 -04:00
|
|
|
{{partial model.instructionTemplate}}
|
2015-03-16 02:05:27 -04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2017-03-06 14:52:01 -05:00
|
|
|
<span class="close-terminal" {{action "close"}}>×</span>
|
2015-04-22 21:48:24 -04:00
|
|
|
|
2015-04-23 15:16:17 -04:00
|
|
|
<div {{bind-attr class=":demo-terminal fullscreen:fullscreen" }}>
|
2015-04-22 21:48:24 -04:00
|
|
|
<div class="log">{{renderedLogs}}</div>
|
|
|
|
|
|
|
|
|
|
<form {{action "submitText" on="submit"}}>
|
2016-12-15 11:00:44 -05:00
|
|
|
{{#unless isLoading}}${{/unless}} {{input value=currentText class="shell" autocomplete="off" spellcheck="false"}}
|
2015-04-22 21:48:24 -04:00
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
{{#if isLoading}}
|
|
|
|
|
<div class="loading-bar"></div>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
2015-03-16 02:05:27 -04:00
|
|
|
</script>
|