I\'ve got a repeater set up and can get data to display as long as there is no html within it.
I\'ve included angular-sanitize.js
and have tried using <
Encountered this issue when using a directive and the solution was not using "replace" in the code.
`ng-html-bind' was being used on a div in the templateUrl view
appDirectives.directive('helpText', [function () {
return {
restrict: 'E',
//replace: true, // With this uncommented it does not work!
scope: {
displayText: '='
},
templateUrl: '/web/form/helptext',
link: function (scope) {
}
};
}]);