diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cbdd1e..ae37021 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ New features: - Added `onLine` value for `Navigator` (#61 by @toastal) - Added `setDragImage` function for `DataTransfer` (#65 by @ajarista) +Bugfixes: +- Removed duplicated `cells` export from the FFI in HTMLTableRowElement.js (#58 by @thomashoneyman) + ## [v3.1.0](https://github.com/purescript-web/purescript-web-html/releases/tag/v3.1.0) - 2021-05-06 New features: diff --git a/src/Web/HTML/HTMLTableRowElement.js b/src/Web/HTML/HTMLTableRowElement.js index 775169d..75d8ecb 100644 --- a/src/Web/HTML/HTMLTableRowElement.js +++ b/src/Web/HTML/HTMLTableRowElement.js @@ -24,14 +24,6 @@ exports.cells = function (row) { // ---------------------------------------------------------------------------- -exports.cells = function (row) { - return function () { - return row.cells; - }; -}; - -// ---------------------------------------------------------------------------- - exports.insertCellAt = function (index) { return function (row) { return function () {