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
On View class, when we provide to template all variable from Model, templateVariables, ... the falsy/undefined values can be removed from Model.
View
Model
templateVariables
It's because of this code: https://github.com/jashkenas/underscore/blob/master/underscore.js#L1082
And because of that, we need to ensure that variable exists in the template because it throws an error if the variable doesn't exist.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On
View
class, when we provide to template all variable fromModel
,templateVariables
, ... the falsy/undefined values can be removed fromModel
.It's because of this code: https://github.com/jashkenas/underscore/blob/master/underscore.js#L1082
And because of that, we need to ensure that variable exists in the template because it throws an error if the variable doesn't exist.
The text was updated successfully, but these errors were encountered: