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

Commit eeef051

Browse files
committed
Fix FFI argument order for HTMLTableSectionElement
1 parent e3240c8 commit eeef051

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/DOM/HTML/HTMLTableSectionElement.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ exports.rows = function (section) {
88

99
// ----------------------------------------------------------------------------
1010

11-
exports["insertRow'"] = function (section) {
12-
return function (index) {
11+
exports["insertRow'"] = function (index) {
12+
return function (section) {
1313
return function () {
1414
return section.insertRow(index);
1515
};
@@ -18,8 +18,8 @@ exports["insertRow'"] = function (section) {
1818

1919
// ----------------------------------------------------------------------------
2020

21-
exports.deleteRow = function (section) {
22-
return function (index) {
21+
exports.deleteRow = function (index) {
22+
return function (section) {
2323
return function () {
2424
section.deleteRow(index);
2525
};

0 commit comments

Comments
 (0)