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

Fix FFI argument order for HTMLTableSectionElement #57

Merged
merged 2 commits into from
Aug 2, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/DOM/HTML/HTMLTableElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ exports.rows = function (table) {

// ----------------------------------------------------------------------------

exports["insertRow'"] = function (table) {
return function (index) {
exports["insertRow'"] = function (index) {
return function (table) {
return function () {
return table.insertRow(index);
};
Expand All @@ -130,8 +130,8 @@ exports["insertRow'"] = function (table) {

// ----------------------------------------------------------------------------

exports.deleteRow = function (table) {
return function (index) {
exports.deleteRow = function (index) {
return function (table) {
return function () {
table.deleteRow(index);
};
Expand Down
8 changes: 4 additions & 4 deletions src/DOM/HTML/HTMLTableSectionElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ exports.rows = function (section) {

// ----------------------------------------------------------------------------

exports["insertRow'"] = function (section) {
return function (index) {
exports["insertRow'"] = function (index) {
return function (section) {
return function () {
return section.insertRow(index);
};
Expand All @@ -18,8 +18,8 @@ exports["insertRow'"] = function (section) {

// ----------------------------------------------------------------------------

exports.deleteRow = function (section) {
return function (index) {
exports.deleteRow = function (index) {
return function (section) {
return function () {
section.deleteRow(index);
};
Expand Down