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 was archived by the owner on Apr 12, 2024. It is now read-only.
I'm using ES6 with angular 1.5.5 and using babel to convert to ES5.
exportclassReportConfigColumnDialogController{constructor($mdDialog,column){'ngInject';// fired after $onInitthis.column=column;console.log(this.column.Alias);// has expected value}$onInit(){// fired firstconsole.log(this.column.Alias);// this.column undefined at this point}}