Skip to content

Commit

Permalink
3.2.1
Browse files Browse the repository at this point in the history
fix css instructions in readme
minify js
update package number
add future update for changelog
  • Loading branch information
scottaohara committed Jun 28, 2018
1 parent b04efce commit c39ba93
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,13 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
Optional feature to add support for up/down arrow keys
- Optional feature to add support for up/down arrow keys.
- Allow for custom component classes to be declared via a data-class attribute.

## [3.2.1] - 2018-06-28
### Changed
- Fixed instructions for CSS selectors in readme file.


## [3.2.0] - 2018-06-28
### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,7 +18,7 @@ $ git clone https://github.com/scottaohara/a11y_accordions.git

Or [download a zip of the repository](https://github.com/scottaohara/a11y_accordions/archive/master.zip).

The CSS for this component is included in `assets/css/`. The styles are dependent on a `.js` class being added to the `body` or `html` of the document, to allow for non-accordion styling were JavaScript to fail. Adjust these styles as necessary for your project.
The CSS for this component is included in `assets/css/`. The classes are added to the accordion markup when the script/page loads. Presently, changing the class names requires a change in the JavaScript file and the CSS. Adjust the styles as necessary for your project.


## Minimum Required Mark-up
Expand Down
2 changes: 1 addition & 1 deletion assets/js/aria.accordion.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -247,6 +247,6 @@ <h2 data-aria-accordion-heading>
</div> <!-- /.page -->

<!-- unminified version: index.js -->
<script src="index.js"></script>
<script src="assets/js/aria.accordion.min.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -10,7 +10,7 @@

ARIAaccordion.NS = 'ARIAaccordion';
ARIAaccordion.AUTHOR = 'Scott O\'Hara';
ARIAaccordion.VERSION = '3.2.0';
ARIAaccordion.VERSION = '3.2.1';
ARIAaccordion.LICENSE = 'https://github.com/scottaohara/accessible_accordions/blob/master/LICENSE';

var widgetClass = 'accordion';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"title": "Accessible ARIA Accordions",
"name": "a11y_accordions",
"description": "ES5 script to create accessible accordion interfaces",
"version": "3.2.0",
"version": "3.2.1",
"main": "index.js",
"homepage": "https://github.com/scottaohara/a11y_accordions#readme",
"repository": {
Expand Down

0 comments on commit c39ba93

Please sign in to comment.