I am trying to do .replace within the template inside of the directive
directive('sampleComponent', function () {
return {
template: '<h2 style="border:1px solid red">{{data.Title}}</h2>'
};
})
i wan to do replace(/'/g, '"')
on the {{data.Title}}
any suggestions?