Element visible: check for offsetHeight/offsetWidth

This commit is contained in:
Andrew Dolgov 2021-02-21 10:34:28 +03:00
parent d6de021ae6
commit 9e56896bd4
1 changed files with 1 additions and 2 deletions

View File

@ -86,8 +86,7 @@ Element.prototype.fadeIn = function(display = undefined){
};
Element.prototype.visible = function() {
// TODO: should we actually check for offsetWidth/offsetHeight == 0?
return this.style.display != "none";
return this.style.display != "none" && this.offsetHeight != 0 && this.offsetWidth != 0;
}
Element.visible = function(elem) {