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
When building the code for the $pager variable on line 68 in responsiveslides.js the <ul> tag for the pager isn't closed properly.
$pager
responsiveslides.js
<ul>
You have:
$pager = $("<ul class='" + namespace + "_tabs " + namespaceIdx + "_tabs' />"),
Whereas I believe the correct code should be:
$pager = $("<ul class='" + namespace + "_tabs " + namespaceIdx + "_tabs'></ul>"),
The current code results in an empty <ul></u> being included immediately after the opening <ul> as follows...
<ul></u>
<ul class="rslides_tabs rslides1_tabs"> <ul></ul>
This triggers some WCAG alerts in different scanning utilities.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When building the code for the
$pager
variable on line 68 inresponsiveslides.js
the<ul>
tag for the pager isn't closed properly.You have:
Whereas I believe the correct code should be:
The current code results in an empty
<ul></u>
being included immediately after the opening<ul>
as follows...This triggers some WCAG alerts in different scanning utilities.
The text was updated successfully, but these errors were encountered: