I'm trying to integrate fineuploader library inside Angular 4. I was referring to https://stackoverflow.com/a/44067445/4261569. My question is too wide to comment there and it looks like the answer is for Angular 2. There is lot of things that has been changed since Angular released it's 4th version.
Moving back to my question: Fineuploader uses
<script type="text/template" id="qq-template">Template code goes here..</script>
However, if I try to include it in my uploader.component.html
file. It just stips of the script tag. When I researched more on it, I found that, it's default behaviour of angular apps. It strips of all script tag in component.
Is there any alternate way of integrating fineuploader inside angular? I really need to use that library as it is the only thing which is supported in IE9 and provides direct S3 upload feature.
Edit Question is not about integrating third party libraries in angular. It's about having inside mycomponent.component.html file. I know for security reasons angular is striping the script tags but using script tag for displaying template is something needed by third party libraries like fineuploader.