File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-checkbox-group" ,
3
- "version" : " 0.1.9 " ,
3
+ "version" : " 0.2.0 " ,
4
4
"author" : " Ziad Saab <ziad.saab@gmail.com>" ,
5
5
"description" : " Sensible checkbox groups manipulation for DOM." ,
6
6
"main" : " react-checkbox-group.js" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-checkbox-group" ,
3
- "version" : " 0.1.9 " ,
3
+ "version" : " 0.2.0 " ,
4
4
"description" : " Sensible checkbox groups manipulation for DOM." ,
5
5
"main" : " react-checkbox-group.js" ,
6
6
"scripts" : {
27
27
},
28
28
"homepage" : " https://github.com/ziad-saab/react-checkbox-group" ,
29
29
"peerDependencies" : {
30
- "react" : " >= 0.11.1 < 1"
30
+ "react" : " >= 0.13.0 < 1"
31
31
},
32
32
"devDependencies" : {
33
33
"babel" : " ^5.6.7"
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ module.exports = React.createClass({
48
48
} ,
49
49
50
50
getCheckboxes : function getCheckboxes ( ) {
51
- return this . getDOMNode ( ) . querySelectorAll ( 'input[type="checkbox"]' ) ;
51
+ return React . findDOMNode ( this ) . querySelectorAll ( 'input[type="checkbox"]' ) ;
52
52
} ,
53
53
54
54
setCheckedBoxes : function setCheckedBoxes ( ) {
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ module.exports = React.createClass({
38
38
} ,
39
39
40
40
getCheckboxes : function ( ) {
41
- return this . getDOMNode ( ) . querySelectorAll ( 'input[type="checkbox"]' ) ;
41
+ return React . findDOMNode ( this ) . querySelectorAll ( 'input[type="checkbox"]' ) ;
42
42
} ,
43
43
44
44
setCheckedBoxes : function ( ) {
You can’t perform that action at this time.
0 commit comments