-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.1.6 #34
Version 0.1.6 #34
Conversation
Add Reflux.all to track the status of multiple listenables. All listenables must have emitted at least one. Fixes #27
function didAllListenablesEmit() { | ||
// reduce cannot be used because it only iterates over *present* | ||
// elements in the array. Initially the Array doesn't contain | ||
// elements. Fore this reason the usage of reduce would always indicate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo "fore"
|
||
for (; i < args.length; ++i) { | ||
listener = args[i]; | ||
if (listener === listener) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
listener === listener
Eh, "derp" on my behalf.
@KyleAMathews, @dashed Done. I'll be releasing this tomorrow after I got some sleep if nobody objects. :-) |
Looks great, thanks for the release :) |
Merging in #27 and #33.
Should also fix #26.