Merge branch 'release/1.2.1'

This commit is contained in:
Lindsay Evans 2018-09-28 10:19:17 +10:00
commit 51f7155202
2 changed files with 57 additions and 6 deletions

View File

@ -1,5 +1,38 @@
# outline.js
# remove-focus-outline
> Formerly outline.js
Removes CSS outlines in an accessible manner
Based on http://www.paciellogroup.com/blog/2012/04/how-to-remove-css-outlines-in-an-accessible-manner/
> :new: I'm working busily on version 2 of remove-focus-outline - pop on over to the [project page](https://github.com/lindsayevans/outline.js/projects/1) to see what's happening, or take a look at the [`develop` branch](https://github.com/lindsayevans/outline.js/tree/develop).
## Installation
```sh
npm install remove-focus-outline
```
Or if Yarn is your thing:
```sh
yarn add remove-focus-outline
```
## Usage
ES6 - TypeScript, Babel, etc.
```js
import 'remove-focus-outline';
```
CommonJS - RequireJS etc.
```js
require('remove-focus-outline');
```
HTML `<script>`:
```html
<script src="node_modules/remove-focus-outline/outline.js"></script>
```

View File

@ -1,8 +1,26 @@
{
"name": "outline.js",
"version": "1.2.0",
"name": "remove-focus-outline",
"version": "1.2.1",
"description": "Removes CSS outlines in an accessible manner",
"main": "outline.js",
"repository": "https://github.com/lindsayevans/outline.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lindsayevans/outline.js.git"
},
"keywords": [
"focus",
"outline",
"css",
"a11y",
"accessibility"
],
"author": "Lindsay Evans <linz@linz.id.au>",
"license": "MIT"
}
"license": "MIT",
"bugs": {
"url": "https://github.com/lindsayevans/outline.js/issues"
},
"homepage": "https://github.com/lindsayevans/outline.js#readme"
}