You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
Look at the console, you'll see Missing localisation for "Hello <strong class="ng-binding">{{user}}</strong>!" because angular added a class="ng-binding" to the element
A fix might be to save the original innerHTML within the compile function and reuse it in the link function where it might already have been modified.
The text was updated successfully, but these errors were encountered:
This is a common problem when trying to set up translation upon dependent translation ids. You might checkout ngTranslate. It uses locale independent translation ids to translate your contents.
http://jsfiddle.net/cjesK/59/
Look at the console, you'll see
Missing localisation for "Hello <strong class="ng-binding">{{user}}</strong>!"
because angular added aclass="ng-binding"
to the elementA fix might be to save the original innerHTML within the compile function and reuse it in the link function where it might already have been modified.
The text was updated successfully, but these errors were encountered: