purescript-deprecated/purescript-dom

Typo in DOM.Node.Element

Closed this issue · 1 comments

purescript-dom/src/DOM/Node/Element.js

160: exports.clientHeight = function (el) {
161:   return function () {
162:     return el.clientHeigh;
163:   };
164: };

Instead of el.clientHeigh should be el.clientHeight.

garyb commented

Thanks for the report!