Hi Scot,
Probaly you have a function call in your sub-nav.componets template that
has a parameter mismatch with the method. This is checked since 4.0.
That means that if you do <div (click)="myfunc($event,data)"> in your
controller the method should match that.
class someComponent {
...
myfunc(ev,data) {...}
//myfunc(ev) {...} <-- does not work
//myfunc(ev,data, somethingelse) {...} <= also doesn't work
...
}
Hope this helps yo a bit,
Regards
Sander
--
You received this message because you are subscribed to the Google Groups
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.