Changeset 23bba05 in github


Ignore:
Timestamp:
Jun 10, 2008 2:37:38 PM (5 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
6025c83
Parents:
8b365e22
Message:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_template.php

    rc8fb2b7 r23bba05  
    761761                    'style', 'class', 'id', 'width', 
    762762                    'height', 'border', 'hspace', 
    763                     'vspace', 'align', 'alt', 
     763                    'vspace', 'align', 'alt', 'tabindex' 
    764764                ) 
    765765            ); 
     
    772772        else if ($attrib['type']=='link') { 
    773773            $btn_content = $attrib['label'] ? $attrib['label'] : $attrib['command']; 
    774             $link_attrib = array('href', 'onclick', 'title', 'id', 'class', 'style'); 
     774            $link_attrib = array('href', 'onclick', 'title', 'id', 'class', 'style', 'tabindex'); 
    775775        } 
    776776        else if ($attrib['type']=='input') { 
     
    785785                array( 
    786786                    'type', 'value', 'onclick', 
    787                     'id', 'class', 'style' 
     787                    'id', 'class', 'style', 'tabindex' 
    788788                ) 
    789789            ); 
  • skins/default/templates/compose.html

    rc17991c r23bba05  
    134134<tr> 
    135135<td> 
    136 <roundcube:button type="input" command="send" class="button" label="sendmessage" /> 
    137 <roundcube:button type="input" command="list" class="button" label="cancel" /> 
     136<roundcube:button type="input" command="send" class="button" label="sendmessage" tabindex="8" /> 
     137<roundcube:button type="input" command="list" class="button" label="cancel" tabindex="9" /> 
    138138</td> 
    139139<td align="right"> 
    140140 <roundcube:label name="editortype" />:&nbsp; 
    141  <span class="radios-left"><roundcube:object name="editorSelector" tabindex="9" /></span> 
     141 <span class="radios-left"><roundcube:object name="editorSelector" tabindex="10" /></span> 
    142142</td> 
    143143</tr> 
Note: See TracChangeset for help on using the changeset viewer.