We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add role="button" at toggler to fix touch support
role="button"
- <div class="panel-heading <?php echo $this->toggler; ?>"<?php if ($this->headlineStyle): ?> style="<?php echo $this->headlineStyle; ?>"<?php endif; ?> data-toggle="collapse"<?php if($group): ?> data-parent="#<?php echo $group; ?>"<?php endif; ?> data-target="#accordion-<?php echo $this->id; ?>"> + <div class="panel-heading <?php echo $this->toggler; ?>"<?php if ($this->headlineStyle): ?> style="<?php echo $this->headlineStyle; ?>"<?php endif; ?> data-toggle="collapse"<?php if($group): ?> data-parent="#<?php echo $group; ?>"<?php endif; ?> data-target="#accordion-<?php echo $this->id; ?>" role="button">
see ember-bootstrap/ember-bootstrap#355 (comment)
The text was updated successfully, but these errors were encountered:
According to ember-bootstrap/ember-bootstrap#355 (comment) it's the wron solution as the role of the panel-heading should be role="tab" which is added by 75608d7.
role="tab"
You'd should use the css solution suggested in your link.
Sorry, something went wrong.
maybe we add at readme "known issues" with this tip to change the CSS
dmolineus
No branches or pull requests
add
role="button"
at toggler to fix touch supportsee ember-bootstrap/ember-bootstrap#355 (comment)
The text was updated successfully, but these errors were encountered: