File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ var Origin = function (_Component) {
30
30
function Origin ( ) {
31
31
_classCallCheck ( this , Origin ) ;
32
32
33
- return _possibleConstructorReturn ( this , Object . getPrototypeOf ( Origin ) . apply ( this , arguments ) ) ;
33
+ return _possibleConstructorReturn ( this , ( Origin . __proto__ || Object . getPrototypeOf ( Origin ) ) . apply ( this , arguments ) ) ;
34
34
}
35
35
36
36
_createClass ( Origin , [ {
@@ -89,7 +89,7 @@ var Origin = function (_Component) {
89
89
function CustomOrigin ( ) {
90
90
_classCallCheck ( this , CustomOrigin ) ;
91
91
92
- return _possibleConstructorReturn ( this , Object . getPrototypeOf ( CustomOrigin ) . apply ( this , arguments ) ) ;
92
+ return _possibleConstructorReturn ( this , ( CustomOrigin . __proto__ || Object . getPrototypeOf ( CustomOrigin ) ) . apply ( this , arguments ) ) ;
93
93
}
94
94
95
95
_createClass ( CustomOrigin , null , [ {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ var Tooltip = function (_Component) {
81
81
function Tooltip ( props ) {
82
82
_classCallCheck ( this , Tooltip ) ;
83
83
84
- var _this = _possibleConstructorReturn ( this , Object . getPrototypeOf ( Tooltip ) . call ( this , props ) ) ;
84
+ var _this = _possibleConstructorReturn ( this , ( Tooltip . __proto__ || Object . getPrototypeOf ( Tooltip ) ) . call ( this , props ) ) ;
85
85
86
86
_this . state = { } ;
87
87
return _this ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " redux-tooltip" ,
3
- "version" : " 0.5.4 " ,
3
+ "version" : " 0.6.0 " ,
4
4
"description" : " A tooltip React component for Redux" ,
5
5
"main" : " ./lib/index.js" ,
6
6
"repository" : {
You can’t perform that action at this time.
0 commit comments