Changeset 317219d in github
- Timestamp:
- Nov 2, 2005 5:49:02 PM (8 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- e0ddd4e
- Parents:
- 6a35c82
- Files:
-
- 2 edited
-
program/steps/mail/compose.inc (modified) (3 diffs)
-
skins/default/templates/compose.html (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/steps/mail/compose.inc
rd7cb774 r317219d 84 84 $field_attrib = array('name' => '_from'); 85 85 foreach ($attrib as $attr => $value) 86 if (in_array($attr, array('id', 'class', 'style', 'size' )))86 if (in_array($attr, array('id', 'class', 'style', 'size', 'tabindex'))) 87 87 $field_attrib[$attr] = $value; 88 88 … … 147 147 $fname = '_bcc'; 148 148 149 $allow_attrib = array('id', 'class', 'style', 'cols', 'rows', 'wrap' );149 $allow_attrib = array('id', 'class', 'style', 'cols', 'rows', 'wrap', 'tabindex'); 150 150 $field_type = 'textarea'; 151 151 break; … … 154 154 case 'reply-to': 155 155 $fname = '_replyto'; 156 $allow_attrib = array('id', 'class', 'style', 'size' );156 $allow_attrib = array('id', 'class', 'style', 'size', 'tabindex'); 157 157 $field_type = 'textfield'; 158 158 break; -
skins/default/templates/compose.html
r6a35c82 r317219d 49 49 50 50 <td class="title"><roundcube:label name="from" /></td> 51 <td><roundcube:object name="composeHeaders" part="from" form="form" /></td>51 <td><roundcube:object name="composeHeaders" part="from" form="form" tabindex="1" /></td> 52 52 53 53 </tr><tr> 54 54 55 55 <td class="title top"><roundcube:label name="to" /></td> 56 <td><roundcube:object name="composeHeaders" part="to" form="form" cols="80" rows="2" /></td>56 <td><roundcube:object name="composeHeaders" part="to" form="form" cols="80" rows="2" tabindex="2" /></td> 57 57 <td class="add-button"><a href="#" onclick="return rcmail_toggle_display('compose-cc')">[Cc]</a><br /> 58 58 <a href="#" onclick="return rcmail_toggle_display('compose-bcc')">[Bcc]</a><br /></td> … … 61 61 62 62 <td class="title top"><roundcube:label name="cc" /></td> 63 <td><roundcube:object name="composeHeaders" part="cc" form="form" cols="80" rows="2" /></td>63 <td><roundcube:object name="composeHeaders" part="cc" form="form" cols="80" rows="2" tabindex="3" /></td> 64 64 65 65 </tr><tr id="compose-bcc"> 66 66 67 67 <td class="title top"><roundcube:label name="bcc" /></td> 68 <td><roundcube:object name="composeHeaders" part="bcc" form="form" cols="80" rows="2" /></td>68 <td><roundcube:object name="composeHeaders" part="bcc" form="form" cols="80" rows="2" tabindex="4" /></td> 69 69 70 70 </tr><tr id="compose-replyto"> 71 71 72 72 <td class="title top"><roundcube:label name="replyto" /></td> 73 <td><roundcube:object name="composeHeaders" part="replyto" form="form" size="80" /></td>73 <td><roundcube:object name="composeHeaders" part="replyto" form="form" size="80" tabindex="5" /></td> 74 74 75 75 <!-- </tr><tr> … … 80 80 81 81 <td class="title"><roundcube:label name="subject" /></td> 82 <td><roundcube:object name="composeSubject" id="compose-subject" form="form" /></td>82 <td><roundcube:object name="composeSubject" id="compose-subject" form="form" tabindex="6" /></td> 83 83 84 84 </tr></table> … … 89 89 90 90 <td style="width:100%; height:100%; vertical-align:top;"> 91 <roundcube:object name="composeBody" id="compose-body" form="form" cols="80" rows="20" warp="virtual" />91 <roundcube:object name="composeBody" id="compose-body" form="form" cols="80" rows="20" warp="virtual" tabindex="7" /> 92 92 </td> 93 93
Note: See TracChangeset
for help on using the changeset viewer.
