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 20, 2018. It is now read-only.
I'm using Observable fromEvent inside a very simple directive with angularjs and angular material,
everything goes well with V.4.0.0, but when I update to v.4.0.1 it does not work any more.
This is the link function of the angular directive:
link = (scope: IExtendedScope, ele: ng.IAugmentedJQuery, attrs: IExtendedAttrs) => {
this.rx.Observable.fromEvent(ele[0], 'click')
// bla bla bla
.subscribe(
(res: any) => console.log(res),
(err: Error) => console.log(err),
() => console.log('completed'));
});