2014-07-29 18:00:39 +00:00
|
|
|
<!-- The first 'sample' prompt is the current one; the remainders are samples. This ought to be cleaned up. -->
|
|
|
|
<div class="current_prompt" style="min-height: 7.5em">
|
|
|
|
<div class="prompt_demo_choice_label">{{ selectedPrompt.name }}</div>
|
|
|
|
<div ng-bind-html-unsafe='selectedPrompt.demo' class="prompt_demo unbordered"></div>
|
|
|
|
<div style="position: absolute; right: 5px; bottom: 5px; color:">
|
|
|
|
<span class="save_button"
|
|
|
|
ng-show="showSaveButton"
|
|
|
|
style="color: #777"
|
|
|
|
ng-click="setPrompt()">{{ savePromptButtonTitle }}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-19 21:34:48 +00:00
|
|
|
<div style="margin: 10px 0 7px 35px;">Preview a prompt below:</div>
|
2014-07-29 18:00:39 +00:00
|
|
|
<div class="prompt_choices_scrollview">
|
|
|
|
<div class="prompt_choices_list">
|
2013-11-09 14:00:41 +00:00
|
|
|
<div ng-repeat="prompt in samplePrompts">
|
|
|
|
<div class="prompt_demo_choice_label">{{ prompt.name }}</div>
|
2013-11-09 18:03:56 +00:00
|
|
|
<div ng-bind-html-unsafe='prompt.demo' class="prompt_demo" ng-click="selectPrompt(prompt)"></div>
|
2013-08-16 18:32:58 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-29 18:00:39 +00:00
|
|
|
</div>
|