This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree 2 files changed +8
-8
lines changed
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) {
120
120
121
121
// ----------------------------------------------------------------------------
122
122
123
- exports [ "insertRow'" ] = function ( table ) {
124
- return function ( index ) {
123
+ exports [ "insertRow'" ] = function ( index ) {
124
+ return function ( table ) {
125
125
return function ( ) {
126
126
return table . insertRow ( index ) ;
127
127
} ;
@@ -130,8 +130,8 @@ exports["insertRow'"] = function (table) {
130
130
131
131
// ----------------------------------------------------------------------------
132
132
133
- exports . deleteRow = function ( table ) {
134
- return function ( index ) {
133
+ exports . deleteRow = function ( index ) {
134
+ return function ( table ) {
135
135
return function ( ) {
136
136
table . deleteRow ( index ) ;
137
137
} ;
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ exports.rows = function (section) {
8
8
9
9
// ----------------------------------------------------------------------------
10
10
11
- exports [ "insertRow'" ] = function ( section ) {
12
- return function ( index ) {
11
+ exports [ "insertRow'" ] = function ( index ) {
12
+ return function ( section ) {
13
13
return function ( ) {
14
14
return section . insertRow ( index ) ;
15
15
} ;
@@ -18,8 +18,8 @@ exports["insertRow'"] = function (section) {
18
18
19
19
// ----------------------------------------------------------------------------
20
20
21
- exports . deleteRow = function ( section ) {
22
- return function ( index ) {
21
+ exports . deleteRow = function ( index ) {
22
+ return function ( section ) {
23
23
return function ( ) {
24
24
section . deleteRow ( index ) ;
25
25
} ;
You can’t perform that action at this time.
0 commit comments