Skip to content

Commit 1ad1031

Browse files
committed
Moving project to rackt org
1 parent 8912876 commit 1ad1031

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ v0.2.1 - Fri, 26 Jun 2015 19:35:50 GMT
4141

4242
### 0.2.0 (Jun 07, 2015)
4343

44-
- Allowing children of Tab to select Tab ([#9](https://github.com/mzabriskie/react-tabs/pull/9))
44+
- Allowing children of Tab to select Tab ([#9](https://github.com/rackt/react-tabs/pull/9))
4545
- Only render the selected TabPanel
4646
- Upgrading to React 0.13
4747
- Removing JSX
48-
- Fixing issue with focus management ([#7](https://github.com/mzabriskie/react-tabs/pull/7))
49-
- Fixing issue caused by no children being provided ([#6](https://github.com/mzabriskie/react-tabs/issues/6))
48+
- Fixing issue with focus management ([#7](https://github.com/rackt/react-tabs/pull/7))
49+
- Fixing issue caused by no children being provided ([#6](https://github.com/rackt/react-tabs/issues/6))
5050
- Fixing issue that made dynamic Tabs difficult

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# react-tabs [![Build Status](https://travis-ci.org/mzabriskie/react-tabs.svg?branch=master)](https://travis-ci.org/mzabriskie/react-tabs)
1+
# react-tabs [![Build Status](https://travis-ci.org/rackt/react-tabs.svg?branch=master)](https://travis-ci.org/rackt/react-tabs)
22

33
React tabs component
44

@@ -10,7 +10,7 @@ $ npm install react-tabs
1010

1111
## Demo
1212

13-
http://mzabriskie.github.io/react-tabs/example/
13+
http://rackt.github.io/react-tabs/example/
1414

1515
## Example
1616

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-tabs",
33
"version": "0.4.1",
4-
"homepage": "https://github.com/mzabriskie/react-tabs",
4+
"homepage": "https://github.com/rackt/react-tabs",
55
"authors": [
66
"Matt Zabriskie"
77
],
@@ -21,4 +21,4 @@
2121
"specs",
2222
"package.json"
2323
]
24-
}
24+
}

examples/basic/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ <h1>react-tabs</h1>
1313
<h2>React tabs component</h2>
1414
</header>
1515
<div id="example" class="padbox"></div>
16-
<a target="_blank" href="https://github.com/mzabriskie/react-tabs"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github-camo.global.ssl.fastly.net/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"></a>
16+
<a target="_blank" href="https://github.com/rackt/react-tabs"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github-camo.global.ssl.fastly.net/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"></a>
1717
<script src="../__build__/shared.js"></script>
1818
<script src="../__build__/basic.js"></script>

lib/components/Tabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ module.exports = React.createClass({
265265
//
266266
// Don't use setState, because we don't want to re-render.
267267
//
268-
// See https://github.com/mzabriskie/react-tabs/pull/7
268+
// See https://github.com/rackt/react-tabs/pull/7
269269
if (this.state.focus) {
270270
setTimeout(() => {
271271
this.state.focus = false;

lib/components/__tests__/Tabs-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ describe('react-tabs', function() {
102102
});
103103

104104
// TODO: Can't seem to make this fail when removing fix :`(
105-
// See https://github.com/mzabriskie/react-tabs/pull/7
105+
// See https://github.com/rackt/react-tabs/pull/7
106106
// it('should preserve selectedIndex when typing', function () {
107107
// let App = React.createClass({
108108
// handleKeyDown: function () { this.forceUpdate(); },

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/mzabriskie/react-tabs.git"
12+
"url": "https://github.com/rackt/react-tabs.git"
1313
},
1414
"author": "Matt Zabriskie",
1515
"license": "MIT",
1616
"bugs": {
17-
"url": "https://github.com/mzabriskie/react-tabs/issues"
17+
"url": "https://github.com/rackt/react-tabs/issues"
1818
},
19-
"homepage": "https://github.com/mzabriskie/react-tabs",
19+
"homepage": "https://github.com/rackt/react-tabs",
2020
"keywords": [
2121
"react",
2222
"tabs",
@@ -34,4 +34,4 @@
3434
"dependencies": {
3535
"js-stylesheet": "0.0.1"
3636
}
37-
}
37+
}

0 commit comments

Comments
 (0)