chore: prettier all ts code

This commit is contained in:
陈嘉涵
2020-01-19 15:27:28 +08:00
parent 04c49b645a
commit 207e80f396
19 changed files with 124 additions and 68 deletions
+5 -5
View File
@@ -1,11 +1,11 @@
export function isHidden(element: HTMLElement) {
const style = window.getComputedStyle(element);
const isHidden = style.display === 'none';
export function isHidden(el: HTMLElement) {
const style = window.getComputedStyle(el);
const hidden = style.display === 'none';
// offsetParent returns null in the following situations:
// 1. The element or its parent element has the display property set to none.
// 2. The element has the position property set to fixed
const isParentHidden = element.offsetParent === null && style.position !== 'fixed';
const parentHidden = el.offsetParent === null && style.position !== 'fixed';
return isHidden || isParentHidden;
return hidden || parentHidden;
}