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

Added image resizing via drag handles

This commit is contained in:
Dan Brown
2022-01-17 17:43:16 +00:00
parent 7622106665
commit 7125530e55
8 changed files with 324 additions and 6 deletions

View File

@ -0,0 +1,7 @@
import ImageView from "./ImageView";
const views = {
image: (node, view, getPos) => new ImageView(node, view, getPos),
};
export default views;