Skip to content
Snippets Groups Projects
Verified Commit 4b0173a9 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

chore: commit save point

parent 915e0880
Branches master
No related tags found
No related merge requests found
......@@ -30189,16 +30189,6 @@
title: "Insert h1 block"
}
});
editor.BlockManager.add("test-block2", {
label: "Test block2",
attributes: {
class: "fa fa-text"
},
content: {
script: "console.log(this)",
content: '<textarea name="editor1"></textarea>'
}
});
console.log(editor);
});
}
......@@ -197,8 +197,6 @@ export function startEditor(config) {
});
editor.Panels.addButton('options', {
id: 'open-templates',
className: 'fa fa-folder-o',
......@@ -259,7 +257,7 @@ export function startEditor(config) {
title: "Redo (CTRL/CMD + Y)"
}
}]);
editor.BlockManager.add('demo-container1', {
label: '<h1>C1</h1>',
content: `
......@@ -282,7 +280,8 @@ export function startEditor(config) {
title: 'Insert h1 block'
}
});
editor.BlockManager.add('demo-content1', {
editor.BlockManager.add('demo-content1', {
label: '<h1>CC1</h1>',
content: `
<p>INHALT1</p>
......@@ -293,22 +292,9 @@ export function startEditor(config) {
}
});
editor.BlockManager.add('test-block2', {
label: 'Test block2',
attributes: {
class: 'fa fa-text'},
content: {
script: 'console.log(this)',
content: '<textarea name="editor1"></textarea>'
}
});
console.log(editor)
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment