vitalii-andriiovskyi / ngx-owl-carousel-o

owl-carousel for Angular >=6
MIT License
177 stars 51 forks source link

Can't put id on navText html tag #181

Open frahmantamala opened 3 years ago

frahmantamala commented 3 years ago

example

customOptions: OwlOptions = {
 navText: [ '<i id="test" class="fa-chevron-left"></i>', '<i class="fa-chevron-right></i>"' ]
}

the result after render on the browser:

<i class="fa-chevron-left"></i>

expected : <i id="test" class="fa-chevron-left"></i>

vitalii-andriiovskyi commented 2 years ago

@frahmantamala

'<i id="test" class="fa-chevron-left"></i>', '<i class="fa-chevron-right></i>"' is set via [innerHTML] and absense of id="test" is caused by Angular sanitizer.