removed "tabindex" - does not work nicely with "properties" plugin

This commit is contained in:
lars 2007-01-26 09:28:12 +00:00
parent a5e6e03351
commit a8e69cec7c
2 changed files with 4 additions and 3 deletions

View file

@ -25,11 +25,11 @@
<td> <td>
<label for="pw"><?cs var:html_escape(Lang.Plugins.volume_mount.Text.EnterCurrentPassword) ?>: </label> <label for="pw"><?cs var:html_escape(Lang.Plugins.volume_mount.Text.EnterCurrentPassword) ?>: </label>
</td><td> </td><td>
<input type="password" tabindex="1" id="pw" name="pw" size="20" maxlength="60" /> <input type="password" id="pw" name="pw" size="20" maxlength="60" />
</td> </td>
<?cs /if ?> <?cs /if ?>
<td> <td>
<button type="submit" tabindex="2"><?cs var:html_escape(Lang.Plugins.volume_mount.Button.Mount) ?></button> <button type="submit"><?cs var:html_escape(Lang.Plugins.volume_mount.Button.Mount) ?></button>
</td> </td>
</tr> </tr>
</table> </table>

View file

@ -12,7 +12,8 @@
<p><table><tr><td> <p><table><tr><td>
<input type="hidden" name="device" value="<?cs var:html_escape(Data.CurrentDisk.device) ?>" /> <input type="hidden" name="device" value="<?cs var:html_escape(Data.CurrentDisk.device) ?>" />
<input type="hidden" name="action" value="umount" /> <input type="hidden" name="action" value="umount" />
<button type="submit" tabindex="2"><?cs var:html_escape(Lang.Plugins.volume_mount.Button.Umount) ?></button> <button type="submit"><?cs var:html_escape(Lang.Plugins.volume_mount.Button.Umount) ?></button>
</td></tr></table></p> </td></tr></table></p>
</form> </form>
</fieldset> </fieldset>