1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-24 07:42:07 +03:00

Crawled forward slightly on table resizing

This commit is contained in:
Dan Brown
2022-01-21 12:16:05 +00:00
parent 8b4f112462
commit 264966de02
8 changed files with 390 additions and 15 deletions

View File

@ -1,9 +1,11 @@
import ImageView from "./ImageView";
import IframeView from "./IframeView";
import TableView from "./TableView";
const views = {
image: (node, view, getPos) => new ImageView(node, view, getPos),
iframe: (node, view, getPos) => new IframeView(node, view, getPos),
table: (node, view, getPos) => new TableView(node, view, getPos),
};
export default views;