mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:38:01 +08:00
A11Y: Do not use positive tabindex in composer (#12563)
This commit is contained in:
parent
5a430e79b0
commit
af879b7851
|
@ -1,7 +1,6 @@
|
|||
import Button from "discourse/components/d-button";
|
||||
|
||||
export default Button.extend({
|
||||
tabindex: 5,
|
||||
classNameBindings: [":btn-primary", ":create", "disableSubmit:disabled"],
|
||||
title: "composer.title",
|
||||
});
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{{d-editor
|
||||
tabindex="4"
|
||||
value=composer.reply
|
||||
placeholder=replyPlaceholder
|
||||
previewUpdated=(action "previewUpdated")
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{{text-field value=composer.title
|
||||
tabindex="2"
|
||||
id="reply-title"
|
||||
maxLength=titleMaxLength
|
||||
placeholderKey=composer.titlePlaceholder
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{{email-group-user-chooser
|
||||
id="private-message-users"
|
||||
tabindex="1"
|
||||
value=splitRecipients
|
||||
onChange=(action "updateRecipients")
|
||||
options=(hash
|
||||
|
|
|
@ -20,8 +20,7 @@
|
|||
model=model
|
||||
openComposer=(action "openComposer")
|
||||
closeComposer=(action "closeComposer")
|
||||
canWhisper=canWhisper
|
||||
tabindex=8}}
|
||||
canWhisper=canWhisper}}
|
||||
{{plugin-outlet name="composer-action-after" noTags=true args=(hash model=model)}}
|
||||
|
||||
{{#unless site.mobileView}}
|
||||
|
@ -37,7 +36,7 @@
|
|||
|
||||
{{#if canEdit}}
|
||||
{{#link-to-input onClick=(action "displayEditReason") showInput=showEditReason icon="info-circle" class="display-edit-reason"}}
|
||||
{{text-field value=editReason tabindex="7" id="edit-reason" maxlength="255" placeholderKey="composer.edit_reason_placeholder"}}
|
||||
{{text-field value=editReason id="edit-reason" maxlength="255" placeholderKey="composer.edit_reason_placeholder"}}
|
||||
{{/link-to-input}}
|
||||
{{/if}}
|
||||
</div>
|
||||
|
@ -60,7 +59,7 @@
|
|||
}}
|
||||
{{#if showWarning}}
|
||||
<label class="add-warning">
|
||||
{{input type="checkbox" checked=model.isWarning tabindex="3"}}
|
||||
{{input type="checkbox" checked=model.isWarning}}
|
||||
{{i18n "composer.add_warning"}}
|
||||
</label>
|
||||
{{/if}}
|
||||
|
@ -75,7 +74,6 @@
|
|||
<div class="category-input">
|
||||
{{category-chooser
|
||||
value=model.categoryId
|
||||
tabindex="3"
|
||||
onChange=(action (mut model.categoryId))
|
||||
isDisabled=disableCategoryChooser
|
||||
options=(hash
|
||||
|
@ -88,7 +86,6 @@
|
|||
{{#if canEditTags}}
|
||||
{{mini-tag-chooser
|
||||
value=model.tags
|
||||
tabindex=4
|
||||
isDisabled=disableTagsChooser
|
||||
onChange=(action (mut model.tags))
|
||||
options=(hash
|
||||
|
@ -140,7 +137,7 @@
|
|||
disableSubmit=disableSubmit}}
|
||||
|
||||
{{#if site.mobileView}}
|
||||
<a href {{action "cancel"}} tabindex="6" title={{i18n "cancel"}} class="cancel">
|
||||
<a href {{action "cancel"}} title={{i18n "cancel"}} class="cancel">
|
||||
{{#if canEdit}}
|
||||
{{d-icon "times"}}
|
||||
{{else}}
|
||||
|
@ -148,7 +145,7 @@
|
|||
{{/if}}
|
||||
</a>
|
||||
{{else}}
|
||||
<a href {{action "cancel"}} tabindex="6" class="cancel" >{{i18n "cancel"}}</a>
|
||||
<a href {{action "cancel"}} class="cancel" >{{i18n "cancel"}}</a>
|
||||
{{/if}}
|
||||
{{/unless}}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user