@@ -10,7 +10,7 @@
"url": "https://github.com/handsontable/handsontable/issues"
},
"author": "Handsoncode <hello@handsontable.com>",
- "version": "6.3.5",
+ "version": "6.3.6",
"browser": "dist/handsontable.js",
"main": "commonjs/index.js",
"module": "es/index.js",
@@ -475,7 +475,7 @@ export function isVisible(elem) {
} else {
return false; // this is a node detached from document in IE8
}
- } else if (next.style.display === 'none') {
+ } else if ( window.getComputedStyle(next).getPropertyValue('display') === 'none') {
return false;
next = next.parentNode;