diff options
author | alecpl <alec@alec.pl> | 2012-03-09 13:23:24 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-03-09 13:23:24 +0000 |
commit | 4be86f3a3779ef86be30e8451750130569d2cacd (patch) | |
tree | 9dc44ebaf3f064609bd92b5a1a7e0118c0cbdedc /skins/default/templates | |
parent | 84d6e279e339cacaea4d3eb61290d54af1c1009b (diff) |
- Unified (single) spellchecker button
Diffstat (limited to 'skins/default/templates')
-rw-r--r-- | skins/default/templates/compose.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/skins/default/templates/compose.html b/skins/default/templates/compose.html index 208c8263c..285a783a1 100644 --- a/skins/default/templates/compose.html +++ b/skins/default/templates/compose.html @@ -3,7 +3,9 @@ <head> <title><roundcube:object name="productname" /> :: <roundcube:label name="compose" /></title> <roundcube:include file="/includes/links.html" /> +<roundcube:if condition="config:enable_spellcheck" /> <link rel="stylesheet" type="text/css" href="/googiespell.css" /> +<roundcube:endif /> <script type="text/javascript" src="/functions.js"></script> <script type="text/javascript" src="/splitter.js"></script> <style type="text/css"> @@ -23,7 +25,12 @@ <div id="messagetoolbar"> <roundcube:button command="list" type="link" class="button back" classAct="button back" classSel="button backSel" title="backtolist" content=" " /> <roundcube:button command="send" type="link" class="buttonPas send" classAct="button send" classSel="button sendSel" title="sendmessage" content=" " /> - <roundcube:button command="spellcheck" type="link" class="buttonPas spellcheck" classAct="button spellcheck" classSel="button spellcheckSel" title="checkspelling" content=" " /> +<roundcube:if condition="config:enable_spellcheck" /> + <span class="dropbutton"> + <roundcube:button command="spellcheck" type="link" class="buttonPas spellcheck" classAct="button spellcheck" classSel="button spellcheckSel" title="checkspelling" content=" " /> + <span id="spellmenulink" onclick="rcmail_ui.show_popup('spellmenu');return false"></span> + </span> +<roundcube:endif /> <roundcube:button name="addattachment" type="link" class="button attach" classAct="button attach" classSel="button attachSel" title="addattachment" onclick="rcmail_ui.show_popup('uploadmenu', true);return false" content=" " /> <roundcube:button command="insert-sig" type="link" class="buttonPas insertsig" classAct="button insertsig" classSel="button insertsigSel" title="insertsignature" content=" " /> <roundcube:button command="savedraft" type="link" class="buttonPas savedraft" classAct="button savedraft" classSel="button savedraftSel" title="savemessage" content=" " /> @@ -111,7 +118,6 @@ <roundcube:button type="input" command="list" class="button" label="cancel" tabindex="11" /> </div> <div id="compose-editorfooter"> - <span id="spellcheck-control" style="margin-right:10px"></span> <roundcube:if condition="!in_array('htmleditor', (array)config:dont_override)" /> <span> <label><roundcube:label name="editortype" /></label> @@ -143,6 +149,8 @@ </table> </div> +<div id="spellmenu" class="popupmenu selectable"></div> + </form> <roundcube:object name="composeAttachmentForm" id="attachment-form" attachmentFieldSize="40" class="popupmenu" /> |