diff --git a/docs/api/editor.md b/docs/api/editor.md index 087ac2f4d..74582561f 100644 --- a/docs/api/editor.md +++ b/docs/api/editor.md @@ -124,7 +124,6 @@ Check the [Pages][8] module. ### General -* `canvasScroll` - Canvas is scrolled * `update` - The structure of the template is updated (its HTML/CSS) * `undo` - Undo executed * `redo` - Redo executed diff --git a/src/editor/index.js b/src/editor/index.js index 0e1065a1e..a65ca87df 100644 --- a/src/editor/index.js +++ b/src/editor/index.js @@ -90,7 +90,6 @@ * ### Pages * Check the [Pages](/api/pages.html) module. * ### General - * * `canvasScroll` - Canvas is scrolled * * `update` - The structure of the template is updated (its HTML/CSS) * * `undo` - Undo executed * * `redo` - Redo executed diff --git a/src/rich_text_editor/index.js b/src/rich_text_editor/index.js index 13c656964..7e6375724 100644 --- a/src/rich_text_editor/index.js +++ b/src/rich_text_editor/index.js @@ -34,7 +34,7 @@ export default () => { let config = {}; let toolbar, actions, lastEl, lastElPos, globalRte; const eventsUp = - 'change:canvasOffset canvasScroll frame:scroll component:update'; + 'change:canvasOffset frame:scroll component:update'; const hideToolbar = () => { const style = toolbar.style; const size = '-1000px';