I'm using angularJs and I must fill the array in ng-init with multiple values:
<div ng-init="script = [
{tag:'tag1', title:'Title1 here', plot:'here goes the plot1'},
{tag:'tag2', title:'Title2 here', plot:'here goes the plot2'},
{tag:'tag3', title:'Title3 here', plot:'here goes the plot3'}
]">
</div>
as you may imagine, the "plot" field is a string which may be quite big and confusing if I write it there. Is it possible to take it from another file? For example I may make three files called plot1, plot2, plot3 and I may call them into my HTML file