File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
## Change Log
2
2
3
- ### 3.0.11 (2016/07/14 06:57 +00:00)
3
+ ### 3.0.11 (2016/07/14 09:34 +00:00)
4
+ - [ #136 ] ( https://github.com/wwayne/react-tooltip/pull/136 ) Check if current element is under transform (@CremAlex )
4
5
- [ #135 ] ( https://github.com/wwayne/react-tooltip/pull/135 ) Transform 3d (@wwayne )
5
6
6
7
### 3.0.9 (2016/07/12 00:23 +00:00)
Original file line number Diff line number Diff line change @@ -1028,7 +1028,7 @@ var calculateOffset = function calculateOffset(offset) {
1028
1028
1029
1029
// Get the offset of the parent elements
1030
1030
var getParent = function getParent ( currentTarget ) {
1031
- var currentParent = currentTarget . parentElement ;
1031
+ var currentParent = currentTarget ;
1032
1032
while ( currentParent ) {
1033
1033
if ( currentParent . style . transform . length > 0 ) break ;
1034
1034
currentParent = currentParent . parentElement ;
You can’t perform that action at this time.
0 commit comments