summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose
diff options
context:
space:
mode:
authorGabriel Albo <gabriel@albo.com.br>2015-10-29 15:40:07 -0200
committerGabriel Albo <gabriel@albo.com.br>2015-10-29 15:40:07 -0200
commit286471b484c7419510809306efa45459b9bab7b7 (patch)
tree90a270e97dce4ff09606b1da24cbef163c2a6baf /web-ui/app/templates/compose
parent3220f53ff8a23de958db69f188fba95c52fd39a6 (diff)
Jeff/Albo - Making the labels on the recipients fields point to their respective inputs.
Diffstat (limited to 'web-ui/app/templates/compose')
-rw-r--r--web-ui/app/templates/compose/recipients.hbs10
1 files changed, 5 insertions, 5 deletions
diff --git a/web-ui/app/templates/compose/recipients.hbs b/web-ui/app/templates/compose/recipients.hbs
index a632f1d9..2192281c 100644
--- a/web-ui/app/templates/compose/recipients.hbs
+++ b/web-ui/app/templates/compose/recipients.hbs
@@ -1,19 +1,19 @@
<div id="recipients-fields" style="display:none">
<div id='recipients-to-area' class="recipients-area input-container columns large-12 no-padding">
<input class="recipients-navigation-handler"/>
- <label class="column large-1">{{t 'TO'}}: </label>
+ <label for="recipients-to-box" class="column large-1">{{t 'TO'}}: </label>
<input id='recipients-to-box' type="text" tabindex="1"/>
</div>
<div id="recipients-cc-area" class="recipients-area input-container columns large-12 no-padding">
<input class="recipients-navigation-handler"/>
- <label class="column large-1">{{t 'CC'}}: </label>
- <input type="text" tabindex="2"/>
+ <label for="recipients-cc-box" class="column large-1">{{t 'CC'}}: </label>
+ <input id='recipients-cc-box' type="text" tabindex="2"/>
</div>
<div id="recipients-bcc-area" class="recipients-area input-container columns large-12 no-padding">
<input class="recipients-navigation-handler"/>
- <label class="column large-1">{{t 'BCC'}}: </label>
- <input type="text" tabindex="3"/>
+ <label for ="recipients-bcc-box" class="column large-1">{{t 'BCC'}}: </label>
+ <input id='recipients-bcc-box' type="text" tabindex="3"/>
</div>
</div>