Skip to content

Commit

Permalink
Merge pull request #114 from wyattdanger/update-travis-status-image
Browse files Browse the repository at this point in the history
Replace references to Rackt with ReactJS
  • Loading branch information
wyattdanger committed Feb 23, 2016
2 parents eb3dd6a + c0c412f commit 5fe2146
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if (process.env.COMPRESS) {
module.exports = {

output: {
library: 'Rackt.A11y',
library: 'ReactJS.A11y',
libraryTarget: 'var'
},

Expand Down

0 comments on commit 5fe2146

Please sign in to comment.