Hi I'm using angular and I want to do an expression in my ng-bind-html-unsafe so that it can choose between two text to show. Is this the right syntax for the expression?
<div ng-bind-html-unsafe="{{ 0 && text || text2}}"></div>
Here's a jsfiddle that show my problem.