This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/components/composer-toggles.hbs
Joe 2acb885c72 FEATURE: fullscreen composer mode on desktop
Adds keyboard shortcut and icon that allows expanding composer to full screen.
2018-10-15 13:59:49 +11:00

23 lines
457 B
Handlebars

<div class="composer-controls">
{{#if site.mobileView}}
{{flat-button
class="toggle-toolbar"
icon="bars"
action=toggleToolbar}}
{{/if}}
{{flat-button
class="toggler"
icon=toggleIcon
action=toggleComposer
title=toggleTitle}}
{{#unless site.mobileView}}
{{flat-button
class="toggle-fullscreen"
icon=fullscreenIcon
action=toggleFullscreen
title=fullscreenTitle}}
{{/unless}}
</div>