So I want to put a variable through a filter inthe ng-bind directive
ng-bind="input | filter"
but I want to insert more text
ng-bind="input | filter + 'more' "
but this isn't working. Is there a way to add more text in ng-bind, like you could if you were simply using {{}}
:
{{input | filter}} more