adopted-ember-addons / adopted-ember-addons/ember-paper
in the paper-input, tabindex attribute is applied to the container not the input
- 主要言語
- JavaScript
- スター
- 879
- フォーク
- 327
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
when creating a paper-input element like
```
{{paper-input
value=email
label='email'
class="flex-100 md-block"
tabindex='1'
type="email"
autofocus="true"
onChange=(action (mut email))
required=true
}}
```
the created html looks like
```html
email
````
so the problem here is the tabindex value is applied to the md-input-container element rather than passed through to the input element. That has the effect of tabbing landing on the label and the next tab landing on the input (two tabs), rather than directly on the input (one tab).
コントリビューションガイド
評価
この issue はまだ評価されていません。