Added comments in the story store

This commit is contained in:
Gytis Vinclovas 2019-06-25 13:44:12 +03:00 committed by GitHub
parent e062493248
commit 4b864ffce5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,9 +90,12 @@ export default class StoryStore extends EventEmitter {
this._error = error === undefined ? this._error : error;
setTimeout(() => {
// preferred method to emit event.
if (this._channel) {
this._channel.emit(Events.STORY_RENDER);
}
// should be deprecated in future.
this.emit(Events.STORY_RENDER);
}, 1);
};