AlexB
AlexB

Reputation: 4528

RxJS-DOM - Cannot read property 'AbstractObserver' of undefined

I've just included RxJS 5.4.0 and RxJS-DOM 7.0.3 on a page and got this error in the console:

TypeError: Cannot read property 'AbstractObserver' of undefined

How can I resolve this error?

Upvotes: 0

Views: 181

Answers (1)

morganfree
morganfree

Reputation: 12472

Rx-DOM is not fully compatible will RxJS 5.

See open tickets on github:

To avoid this error you need to use RxJS 4.

Upvotes: 1

Related Questions