I'm replacing some bindings in giant list with Angular once. However, I cant figure out how to replace the following {{}} binding with once:
I'm replacing the following working code:
<div class="question">
{{result.Question | limitTo: 175}}{{result.Question.length > 175 ? '...' : ''}}
</div>
Here's what I have so far, everything else I try fails:
<div class="question">
<p once-text="result.Question | limitTo: 175"></p>
</div>
Question:
Using Angular once, how can I accomplish the same side-by-side binding statement that was possible in native Angular?