Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #72 from purescript-contrib/clientheight-typo
Browse files Browse the repository at this point in the history
Fix `clientHeight` typo
  • Loading branch information
garyb authored Dec 8, 2016
2 parents a3a6e0c + bcc6252 commit ee79e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DOM/Node/Element.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,6 @@ exports.clientWidth = function (el) {

exports.clientHeight = function (el) {
return function () {
return el.clientHeigh;
return el.clientHeight;
};
};

0 comments on commit ee79e6e

Please sign in to comment.