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
Not sure if a mistake in documentation or a bug.
The documentation say that $repeat "reflects the .length of the array" https://github.com/Famous/framework-guides/blob/develop/control-flow.md
$repeat
But:
'.el': { '$repeat': function() { var arr = new Array(3); return arr; } }
Results in no elements being repeated.
The text was updated successfully, but these errors were encountered:
Looks like a bug to me.
It seems that we're doing a falsey check somewhere since pushing false / undefined / 0 to the array also breaks it.
'$repeat': function() { var messages = []; for (var i = 0; i < 360; i++) { messages.push(false); } return messages; }
We'll look into this.
Sorry, something went wrong.
No branches or pull requests
Not sure if a mistake in documentation or a bug.
The documentation say that
$repeat
"reflects the .length of the array" https://github.com/Famous/framework-guides/blob/develop/control-flow.mdBut:
Results in no elements being repeated.
The text was updated successfully, but these errors were encountered: