UNPKG
feedy
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
feedback widget using Webcom
github.com/webcom-components/feedy
webcom-components/feedy
feedy
/
src
/
utils
/
dom.js
7 lines
(6 loc)
•
194 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
const
outerHeight
= el => {
let
height = el.
offsetHeight
;
const
style =
getComputedStyle
(el); height +=
parseInt
(style.
marginTop
) +
parseInt
(style.
marginBottom
);
return
height; }