This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -120,8 +120,8 @@ exports.rows = function (table) {
120120
121121// ----------------------------------------------------------------------------
122122
123- exports [ "insertRow'" ] = function ( table ) {
124- return function ( index ) {
123+ exports [ "insertRow'" ] = function ( index ) {
124+ return function ( table ) {
125125 return function ( ) {
126126 return table . insertRow ( index ) ;
127127 } ;
@@ -130,8 +130,8 @@ exports["insertRow'"] = function (table) {
130130
131131// ----------------------------------------------------------------------------
132132
133- exports . deleteRow = function ( table ) {
134- return function ( index ) {
133+ exports . deleteRow = function ( index ) {
134+ return function ( table ) {
135135 return function ( ) {
136136 table . deleteRow ( index ) ;
137137 } ;
Original file line number Diff line number Diff 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 } ;
You can’t perform that action at this time.
0 commit comments