Skip to content

Commit

Permalink
indent issue :)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuhikoarase committed Oct 11, 2023
1 parent e19a563 commit e5cb894
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/comfortable.d.ts.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/comfortable.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "comfortable-js",
"version": "0.1.141",
"version": "0.1.142",
"description": "Simple, Fast, Customizable Table Component in JavaScript.",
"author": "Kazuhiko Arase",
"main": "lib/comfortable.js",
Expand Down
4 changes: 2 additions & 2 deletions src/main/ts/core/Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ namespace comfortable {
};

private document_mousedownHandler = (event : any) => {
if (!util.closest(event.target, { $el : this.$el }) ) {
// endEdit when mousedown outside table.
if (!util.closest(event.target, { $el : this.$el }) ) {
// endEdit when mousedown outside table.
this.editor.endEdit('mousedown');
this.render();
}
Expand Down

0 comments on commit e5cb894

Please sign in to comment.