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
In one of my charts I used afterSetup to draw tooltips with i18n support (intl). After upgrading to ember 2.9 afterSetup is called without it component context so I couldn't get intl service in it. I had to use:
this.parentView.get('intl')
instead of:
this.get('intl')
It works, but the "parentView" is likely to be changed sooner or later as ember is removing old views logic. So it may require some changes how those chart bindings work.
The text was updated successfully, but these errors were encountered:
In one of my charts I used afterSetup to draw tooltips with i18n support (intl). After upgrading to ember 2.9 afterSetup is called without it component context so I couldn't get intl service in it. I had to use:
instead of:
It works, but the "parentView" is likely to be changed sooner or later as ember is removing old views logic. So it may require some changes how those chart bindings work.
The text was updated successfully, but these errors were encountered: