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
This template:
<ul> <% $(items).each(function(i, item) { %> <% console.log(item); %>derp <% }); %> </ul>
Produces this source:
this.line = 3; this.ret += '\n <ul>'; this.line = 4; this.ret += '\n '; $(items).each(function(i, item) { ; this.line = 5; this.ret += '\n '; console.log(item); ; this.ret += 'derp'; this.line = 6; this.ret += '\n '; }); ; this.line = 7; this.ret += '\n </ul>';
this.ret is being called on the wrong this. I suggest using a local variable instead of this.
this.ret
this
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This template:
Produces this source:
this.ret
is being called on the wrongthis
. I suggest using a local variable instead ofthis
.The text was updated successfully, but these errors were encountered: