diff --git a/app/components/SimpleEditor/elements/isolatedNote/IsolatedNotePackage.js b/app/components/SimpleEditor/elements/isolatedNote/IsolatedNotePackage.js index 2e98f98ede98bcd8eb7fcb40771a0fc2e3a2e846..9aa292f23db1500642a7fbc045603471a2879aa8 100644 --- a/app/components/SimpleEditor/elements/isolatedNote/IsolatedNotePackage.js +++ b/app/components/SimpleEditor/elements/isolatedNote/IsolatedNotePackage.js @@ -5,7 +5,6 @@ import IsolatedNoteCommand from './IsolatedNoteCommand' import IsolatedNoteTool from './IsolatedNoteTool' // import {InsertInlineNodeCommand} from 'substance' - export default { name: 'isolated-note', configure: function (config) { @@ -13,8 +12,6 @@ export default { config.addComponent(IsolatedNote.type, IsolatedNoteComponent) config.addConverter('html', IsolatedNoteHTMLConverter) config.addCommand('insert-isolated-note', IsolatedNoteCommand, {nodeType: IsolatedNote.type}) - config.addTool('insert-isolated-note', IsolatedNoteTool, { toolGroup: 'annotations' }) - config.addIcon('insert-isolated-note', { 'fontawesome': 'fa-close' }) }, IsolatedNote: IsolatedNote,