We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
// get buttons in reverse order and loop through each $(buttons.get().reverse()).each(function(index, count) {
this is always true because count is not a number so backUpFromSmall() is fired every time if (!--count) backUpFromSmall();
if (!--count) backUpFromSmall();
The text was updated successfully, but these errors were encountered:
Hey @tomaszrondio. Thanks! Care to offer a PR to fix?
Sorry, something went wrong.
I would if I could :) I am not sure what would be a fix here that is why I opened an issue instead of PR.
Rename the second argument of each from count to value and move the b…
e5988f5
…ackUpFromSmall call to the outer loop. This should fix kni-labs#191
No branches or pull requests
this is always true because count is not a number so backUpFromSmall() is fired every time
if (!--count) backUpFromSmall();
The text was updated successfully, but these errors were encountered: