Skip to content

Commit

Permalink
Merge pull request #1300 from xxd3vin/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
AllenFang authored May 9, 2017
2 parents 6dbca19 + f26d281 commit 4c1cf0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/js/cell-edit/cell-edit-hook-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function onAfterSaveCell(row, cellName, cellValue) {
rowStr += prop + ': ' + row[prop] + '\n';
}

alert('Thw whole row :\n' + rowStr);
alert('The whole row :\n' + rowStr);
}

function onBeforeSaveCell(row, cellName, cellValue) {
Expand Down
2 changes: 1 addition & 1 deletion examples/js/complex/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function onSelectAll(isSelected) {

function onAfterSaveCell(row, cellName, cellValue) {
console.log(`Save cell ${cellName} with value ${cellValue}`);
console.log('Thw whole row :');
console.log('The whole row :');
console.log(row);
}

Expand Down

0 comments on commit 4c1cf0a

Please sign in to comment.