1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Added support for iframe node blocks

This commit is contained in:
Dan Brown
2022-01-20 13:38:16 +00:00
parent b1f5495a7f
commit 20f37292a1
7 changed files with 149 additions and 1 deletions

View File

@ -12,6 +12,7 @@ import {removeMarks} from "../commands";
import itemAnchorButtonItem from "./item-anchor-button";
import itemHtmlSourceButton from "./item-html-source-button";
import itemIframeButton from "./item-iframe-button";
function cmdItem(cmd, options) {
@ -158,6 +159,7 @@ const inserts = [
new DropdownSubmenu([
new TableCreatorGrid()
], {icon: icons.table}),
itemIframeButton(),
itemHtmlSourceButton(),
];