diff options
| author | Gislene Pereira <gislene01@gmail.com> | 2015-10-22 12:33:00 -0300 | 
|---|---|---|
| committer | Gislene Pereira <gislene01@gmail.com> | 2015-10-22 12:34:24 -0300 | 
| commit | fc88b2d61d3bf1a09c400cc1e3e3170036377b1a (patch) | |
| tree | 85f30b6e5ce88459c7cb76d449d5d33f01b0fa55 | |
| parent | 8df6d98c1b7f06ba1d394908c6e8c333c7c5d517 (diff) | |
[#414] Moving recipients area to the top in compose screen.
| -rw-r--r-- | web-ui/app/templates/compose/compose_box.hbs | 17 | 
1 files changed, 9 insertions, 8 deletions
| diff --git a/web-ui/app/templates/compose/compose_box.hbs b/web-ui/app/templates/compose/compose_box.hbs index 2a1d27b0..47b1e658 100644 --- a/web-ui/app/templates/compose/compose_box.hbs +++ b/web-ui/app/templates/compose/compose_box.hbs @@ -1,3 +1,11 @@ +{{> recipients }} + +<div class="clearfix"> +    <a id="to-trigger" class="hide">{{t 'To'}}</a> +    <a id="ccs-trigger" class="hide">{{t 'CC'}}</a> +    <a id="bccs-trigger" class="hide">{{t 'BCC'}}</a> +</div> +  <button class="close-mail-button">    <i class="fa fa-times"></i>  </button> @@ -10,17 +18,10 @@    <textarea class="floatlabel" name="body" id="text-box" placeholder="{{t 'Body'}}" tabindex="2">{{body}}</textarea>  </div> -{{> recipients }} - -<div class="clearfix"> -    <a id="to-trigger" class="hide">{{t 'To'}}</a> -    <a id="ccs-trigger" class="hide">{{t 'CC'}}</a> -    <a id="bccs-trigger" class="hide">{{t 'BCC'}}</a> -</div> -  <div class="buttons-group columns">    <button id="send-button" tabindex="6"><i class="fa fa-send"></i></button>    <button id="trash-button" tabindex="7">{{t 'trash-button'}}<i class="fa fa-trash-o"></i></button>    <button id="draft-button">{{t 'draft-button'}}<i class="fa fa-pencil"></i></button>    <div id="draft-save-status"></div>  </div> + | 
