Closed xianrui closed 8 years ago
Please use 2.0.0 release to confirm that issue is gone.
I have downloaded 2.0.0 today still getting same error...
toasty.service.js.zip
This is toasty.service.js file I get, after using npm install ng2-toasty --save
command.
TypeError: Cannot read property 'next' of undefined(…) toasty.service.js:158 !!! Suggestion: Seems you forget add into your html?
This code has a exception in toasty.service.ts page
// Push up a new toast item try { this.toastsSubscriber.next(toast); // **# has a exception** // If we have a onAdd function, call it here if (toastyOptions.onAdd && isFunction(toastyOptions.onAdd)) { toastyOptions.onAdd.call(this, toast); } } catch (e) { console.log(e); console.log('!!! Suggestion: Seems you forget add <ng2-toasty></ng2-toasty> into your html?'); }
But I have added the code in the html page
excuse me I should be?