mirror of
https://github.com/discourse/discourse.git
synced 2025-02-09 00:13:00 +08:00
![Peter Wagenet](/assets/img/avatar_default.png)
* Run no-implicit-this codemod for app templates * Run tagless-ember-components-codemod for plugins * Turn on no-implicit-this lint
19 lines
705 B
Handlebars
19 lines
705 B
Handlebars
<div class="previews {{if this.draggingActive "dragging"}}">
|
|
<div class="preview-area topic-preview">
|
|
<canvas width={{this.elementWidth}} height={{this.elementHeight}} style={{this.canvasStyle}}>
|
|
</canvas>
|
|
</div>
|
|
<div class="preview-area homepage-preview">
|
|
<HomepagePreview @wizard={{this.wizard}} @step={{this.step}} />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="preview-nav">
|
|
<a href class="preview-nav-button {{if this.previewTopic "active"}}" {{action "setPreviewTopic"}}>
|
|
{{i18n "wizard.previews.topic_preview"}}
|
|
</a>
|
|
<a href class="preview-nav-button {{unless this.previewTopic "active"}}" {{action "setPreviewHomepage"}}>
|
|
{{i18n "wizard.previews.homepage_preview"}}
|
|
</a>
|
|
</div>
|