diff --git a/README.md b/README.md index f891803..38005ae 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ React A11y ========== -[![build status](https://img.shields.io/travis/rackt/react-a11y/master.svg?style=flat-square)](https://travis-ci.org/rackt/react-a11y) +[![build status](https://img.shields.io/travis/reactjs/react-a11y/master.svg?style=flat-square)](https://travis-ci.org/reactjs/react-a11y) Warns about potential accessibility issues with your React elements. diff --git a/lib/index.js b/lib/index.js index fb6cfea..91563de 100644 --- a/lib/index.js +++ b/lib/index.js @@ -102,9 +102,9 @@ var logWarning = (component, failureInfo, options) => { if (includeSrcNode && component) { // TODO: // 1) Consider using ReactDOM.findDOMNode() over document.getElementById - // https://github.com/rackt/react-a11y/issues/54 + // https://github.com/reactjs/react-a11y/issues/54 // 2) Consider using ref to expand element element reference logging - // to all element (https://github.com/rackt/react-a11y/issues/55) + // to all element (https://github.com/reactjs/react-a11y/issues/55) let srcNode = document.getElementById(failureInfo.id); // Guard against logging null element references should render() diff --git a/package.json b/package.json index d9522d5..5be51d1 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,10 @@ "main": "./dist/index.js", "repository": { "type": "git", - "url": "https://github.com/rackt/react-a11y.git" + "url": "https://github.com/reactjs/react-a11y.git" }, - "homepage": "https://github.com/rackt/react-a11y/blob/latest/README.md", - "bugs": "https://github.com/rackt/react-a11y/issues", + "homepage": "https://github.com/reactjs/react-a11y/blob/latest/README.md", + "bugs": "https://github.com/reactjs/react-a11y/issues", "scripts": { "test": "jsxhint . && karma start --single-run", "watch-tests": "npm test -- --watch", diff --git a/webpack.config.js b/webpack.config.js index d30f341..a92b111 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -19,7 +19,7 @@ if (process.env.COMPRESS) { module.exports = { output: { - library: 'Rackt.A11y', + library: 'ReactJS.A11y', libraryTarget: 'var' },