Search code examples
angulartinymcetinymce-4

Prevent auto focus on tinymce in angular 2


Can anyone help me how to prevent auto focus in angular 2.

I don't have idea how to do it in angular 2, but I am able to do it jquery:

$('form *:input[type!=hidden]:first').focus();

Solution

  • In your app module replace the module as bellow

    TinymceModule.withConfig({'auto_focus':false,})