Romain Guarnotta

Results 8 comments of Romain Guarnotta

You need to specify a name tag with angular2+ like that : ``

I add the file_picker_callback function in the **TinymceModule.withConfig({ })** and the **input type="file"** like the codepen and it works. But if I write something after the image's importation, the image...

I added this to my tinymce config and it seems to work `setup: editor => { editor.on('init', () => { editor.off('change'); }); }`

Hi, Have you import assets of tinymce ? Maybe it's because you add some plugins no imported. This link help me at the beginning : https://github.com/Ledzz/angular2-tinymce/issues/10

I still have the same error with your fix :/

You just need to give it a name tag like example 1 : It's relative to Angular, not codemirror ;)

I have an error too with ng2-codemirror and ng2-bs3-modal. I use this config : _{lineNumbers: true, theme: 'mdn-like', mode: 'clike', height: '500px'}_ **Before clicking :** ![codemirror-modal-before-clicking](https://user-images.githubusercontent.com/16555125/29417456-86cc2d04-8369-11e7-899c-e61fafba67d1.PNG) **After clicking :** ![codemirror-modal-after-clicking](https://user-images.githubusercontent.com/16555125/29417479-99667992-8369-11e7-90b3-685fbd6e66dd.PNG)...

I found a solution ! You just need to "refresh" the codemirror instance ;) (So you no longer need to override CSS Class) First in my **component.html**, I add **#editor**...