Check if style attribute contains display: none

This commit is contained in:
Kevin Sawicki 2017-09-01 15:21:09 -07:00
Родитель 4f5d18f0b9
Коммит af5189f5c0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -134,7 +134,7 @@
}
function elementIsHidden(element) {
return element.closest('[aria-hidden="true"], [hidden], [style="display: none"]') != null
return element.closest('[aria-hidden="true"], [hidden], [style*="display: none"]') != null
}
function isText(value) {