File tree Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ v0.2.1 - Fri, 26 Jun 2015 19:35:50 GMT
41
41
42
42
### 0.2.0 (Jun 07, 2015)
43
43
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 ) )
45
45
- Only render the selected TabPanel
46
46
- Upgrading to React 0.13
47
47
- 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 ) )
50
50
- Fixing issue that made dynamic Tabs difficult
Original file line number Diff line number Diff line change 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 )
2
2
3
3
React tabs component
4
4
@@ -10,7 +10,7 @@ $ npm install react-tabs
10
10
11
11
## Demo
12
12
13
- http://mzabriskie .github.io/react-tabs/example/
13
+ http://rackt .github.io/react-tabs/example/
14
14
15
15
## Example
16
16
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-tabs" ,
3
3
"version" : " 0.4.1" ,
4
- "homepage" : " https://github.com/mzabriskie /react-tabs" ,
4
+ "homepage" : " https://github.com/rackt /react-tabs" ,
5
5
"authors" : [
6
6
" Matt Zabriskie"
7
7
],
21
21
" specs" ,
22
22
" package.json"
23
23
]
24
- }
24
+ }
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ <h1>react-tabs</h1>
13
13
< h2 > React tabs component</ h2 >
14
14
</ header >
15
15
< 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 >
17
17
< script src ="../__build__/shared.js "> </ script >
18
18
< script src ="../__build__/basic.js "> </ script >
Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ module.exports = React.createClass({
265
265
//
266
266
// Don't use setState, because we don't want to re-render.
267
267
//
268
- // See https://github.com/mzabriskie /react-tabs/pull/7
268
+ // See https://github.com/rackt /react-tabs/pull/7
269
269
if ( this . state . focus ) {
270
270
setTimeout ( ( ) => {
271
271
this . state . focus = false ;
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ describe('react-tabs', function() {
102
102
} ) ;
103
103
104
104
// 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
106
106
// it('should preserve selectedIndex when typing', function () {
107
107
// let App = React.createClass({
108
108
// handleKeyDown: function () { this.forceUpdate(); },
Original file line number Diff line number Diff line change 9
9
},
10
10
"repository" : {
11
11
"type" : " git" ,
12
- "url" : " https://github.com/mzabriskie /react-tabs.git"
12
+ "url" : " https://github.com/rackt /react-tabs.git"
13
13
},
14
14
"author" : " Matt Zabriskie" ,
15
15
"license" : " MIT" ,
16
16
"bugs" : {
17
- "url" : " https://github.com/mzabriskie /react-tabs/issues"
17
+ "url" : " https://github.com/rackt /react-tabs/issues"
18
18
},
19
- "homepage" : " https://github.com/mzabriskie /react-tabs" ,
19
+ "homepage" : " https://github.com/rackt /react-tabs" ,
20
20
"keywords" : [
21
21
" react" ,
22
22
" tabs" ,
34
34
"dependencies" : {
35
35
"js-stylesheet" : " 0.0.1"
36
36
}
37
- }
37
+ }
You can’t perform that action at this time.
0 commit comments