Binding not working when I use Angular-trix :: AngularJs

0
1232
<trix-editor angular-trix ng-model="editedComment.text" class="trix-content editable-trix-editor"></trix-editor>

To your code add ng-if=”true” so it will look now :

<trix-editor ng-if="true" angular-trix ng-model="editedComment.text" class="trix-content editable-trix-editor"></trix-editor>

and it solves the problem.

I got the solution. I have to write ng-if='true'. which has solved my problem

LEAVE A REPLY

Please enter your comment!
Please enter your name here