npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bootstrap-accessibility-plugin

v1.0.6

Published

A plugin that provides accessibility features for Bootstrap3 components

Downloads

1,600

Readme

Bootstrap Accessibility Plugin, v1.0

by the PayPal Accessibility Team

See the Authors section below for more information.

What is it?

This plugin adds accessibility mark-up to the default components of Bootstrap 3 to make them accessible for keyboard and screen reader users. Do not worry, the plugin does not affect the performance or the visual layout of your website. Let the magic remain magic!

Why do I want it?

If you use Bootstrap library (version 3.x) on your website, your pages will now be much more usable and navigable for and by keyboard and screen reader users with no work on your part. Believe us, for this they will thank you! Read on to learn about all the enhancements introduced by this plugin.

How do I get it on my website?

  1. Download and include Bootstrap.js from getbootstrap.com.
  2. Download and include the bootstrap accessibility plugin js.
  3. Download and include the bootstrap accessibility plugin css to override css styles.
  4. Optional: Lazily load the JavaScript plugin after the page is loaded (example).
  5. For basic implementation:
 <link rel="stylesheet" href="/css/bootstrap.min.css">
 <link rel="stylesheet" href="/css/bootstrap-accessibility.css">

 <script src="http://code.jquery.com/jquery.js"></script>
 <script src="/js/bootstrap.min.js"></script>
 <script src="/js/bootstrap-accessibility.min.js"></script>
  1. You can also install it from npm or bower:
 bower install bootstrapaccessibilityplugin
 npm install bootstrap-accessibility-plugin

Which components become accessible?

  • Alert
  • Tooltip
  • Popover
  • Modal dialog
  • Dropdown menu
  • Tab panel
  • Collapse
  • Carousel

Plugin Live Demo

Feel free to play with the live demo of the components listed above and the Bootstrap Accessibility Plugin in action. Seeing how "accessified" widgets work in this demo will help you verify whether the plugin is installed correctly on your website.

Details

Alert

  1. Add role of Alert to Alert, Warning, and Success Bootstrap Messages.
  2. Increase the color contrast. The foreground to background color contrast ratio for the message was too low.
  3. Add instructions in message dialog, so that the developer using the alert knows to manage keyboard focus on alert dismissal.
  4. Close button now accessible to screen readers.

Tooltip

  1. Add role of Tooltip to tooltip div.
  2. Generate a random id, assign it to the tooltip div, and reference it from the Tooltip element with the ARIA attribute "aria-describedby".
  3. Remove aria-describedby when the tooltip is hidden.

Popover

  1. Add role of Tooltip to popover div.
  2. Generate a random id, assign it to Popover div, and reference it from the Tooltip element with the ARIA attribute "aria-describedby".
  3. Remove aria-describedby when the popover is dismissed.

Modal Dialog

  1. Add role of Document to content div inside dialog, so that NVDA can force document mode and read contents inside Dialog.
  2. When the Modal is closed, return the focus to the element which opened the dialog.
  3. Change the focus outline of close button to visible.
  4. Close button now accessible to screen readers.

Dropdown

  1. Add aria-haspopup and and aria-expanded attributes to dropdown toggle link.
  2. Dynamically change aria-expanded when the dropdown closes or opens.
  3. Focus to first item on activating dropdown.
  4. Add ability to open dropdown with spacebar.
  5. Close dropdown when tabbing out from dropdown.
  6. Change the focus outline of dropdown to visible.

Tab Panel

  1. Add ARIA roles like tablist, presentation, and tab for tabs UL, LI.
  2. Add tabIndex, aria-expanded, aria-selected, aria-controls for tab.
  3. Add ARIA roles of tabPanel, tabIndex, aria-hidden, and aria-labelledBy for tabPanel.
  4. Add keydown event listener for the tab to work with keyboard.
  5. Dynamically flip tabIndex, aria-selected, and aria-expanded for tab when it is activated and add aria-hidden to hide the previously visible tab.

Collapse

  1. Add tab role, aria-selected, aria-expanded, aria-controls, and tabIndex for collapse tab.
  2. Add ARIA roles of tabPanel, tabIndex, aria-hidden, and aria-labelledBy for collapsible panel.
  3. Add role of tabList and aria-multiselectable for collapse container div.
  4. Dynamically flip tabIndex, aria-selected, and aria-expanded for tab when it is activated and add aria-hidden to hide the previously visible collapse tabpanel.
  5. Add keydown event listener for the collapse component to work with keyboard.

Carousel

  1. Prevent automatic cycling of the carousel.
  2. Prevent wrapping to first item on next button navigation or wrapping to last item on previous button navigation.
  3. Add role of listbox for carousel div.
  4. Add ARIA role of option, aria-selected, and tabIndex for individual carousel items.
  5. Add role of button for previous and next anchor links and a hidden screen reader text of "Previous" and "Next".
  6. Add keydown event listener for the carousel to work with keyboard.
  7. Dynamically change tabIndex and aria-selected property of active and inactive tabs.
  8. Remove display:none and hide (offscreen) of the inactive carousel items, so that screen readers can count the total number of carousel items.

Re-compiling

You may want to extend the plugin further or change some of the code. Here is how to do it:

  1. Get NodeJS from http://nodejs.org
  2. Clone the latest code from https://github.com/paypal/bootstrap-accessibility-plugin.git
  3. Go to the root of this project and install Compass and Sass:
 cd bootstrap-accessibility-plugin
 sudo gem install compass
  1. Install and run grunt:
 sudo npm install grunt-cli -g
 npm install
 grunt
  1. To run the examples, initialize the git submodules:
git submodule init
git submodule update

Feedback and Contributions

Please do not hesitate to open an issue or send a pull request if something doesn't work or you have ideas for improvement. For instructions on how to contribute to this project please read the contribution guide.

Authors

Related Resources

  • Bootstrap a11y theme - makes web accessibility easier for Bootstrap developers, a pure LESS/CSS solution.

Copyright and License

Copyright 2015, PayPal under the BSD license.