I'm developping an app in Angular 2.3
Let's say I have this:
let dynamicTooltip = `<p ngbTooltip="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">Test</p>`
And I want to inject this in my HTML like ?
editor.html.insert(dynamicTooltip);
and I want my ngbTooltip directive component to be loaded properly. How Is it possible ? I know in angular 1.x I used to do $.compile
Thanks