Feel like I might be overlooking a simple solution here, but I'm facing an issue:
<h4 ng-bind="example.heading">
<small ng-bind="example.subheading"></small>
</h4>
This code doesn't seem to work - if ng-bind
replaces the content inside the tag, should I switch to using the {{}}
syntax instead? Like this,
<h4>{{example.heading}}<small ng-bind="example.subheading"></small></h4>
I prefer the seamless display without the brackets flashing momentarily, which is why I chose to use ng-bind
. Any other methods I could try?