| 9271 | const firePreProcess = (editor, args) => editor.dispatch('PreProcess', args); |
| 9272 | const firePostProcess = (editor, args) => editor.dispatch('PostProcess', args); |
| 9273 | const fireRemove = editor => { |
| 9274 | editor.dispatch('remove'); |
| 9275 | }; |
| 9276 | const fireDetach = editor => { |
| 9277 | editor.dispatch('detach'); |
| 9278 | }; |