-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Before: resizing div for each cell in column/row Now: one resizing div across entire column/row Fixed problems: - resizing div could be missing here or there - cursor would change during resizing when moving it from column to row and vice versa (should not change) - removed word-break rule
- Loading branch information
Showing
14 changed files
with
432 additions
and
404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
import { dispatchNoteEdited } from "notes/events"; | ||
|
||
import { initImgs } from "./img"; | ||
import { initTables } from "./table"; | ||
import renderTableContextMenu from "./render-table-context-menu"; | ||
import renderTableContextMenu from "./table/render/render-table-context-menu"; | ||
|
||
export default () => { | ||
initImgs(); | ||
initTables({ | ||
onResize: dispatchNoteEdited, | ||
contextMenuRenderFunction: renderTableContextMenu, | ||
}); | ||
}; |
Oops, something went wrong.