We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
aria-posinset
aria-setsize
1 parent f603d69 commit 2f7d3c8Copy full SHA for 2f7d3c8
src/mixins/pagination.js
@@ -528,9 +528,9 @@ export default {
528
: `${this.labelPage} ${page.number}`,
529
'aria-checked': isNav ? null : active ? 'true' : 'false',
530
'aria-current': isNav && active ? 'page' : null,
531
- 'aria-posinset': page.number,
532
- 'aria-setsize': numberOfPages,
533
- // ARIA "roving tabindex" method (except in isNav mode)
+ 'aria-posinset': isNav ? null : page.number,
+ 'aria-setsize': isNav ? null : numberOfPages,
+ // ARIA "roving tabindex" method (except in `isNav` mode)
534
tabindex: isNav ? null : tabIndex
535
}
536
const btnContent = toString(this.makePage(page.number))
0 commit comments