We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I've tried using the script on Codepen and it worked, but when installing it locally the console returned an error.
Uncaught SyntaxError: missing ) after argument list" on line 208
Now the line with the problem is actually the previous one
_tpl = _tpl.replace(/{{i}}/g, this.elementCount);
The browser reads it like
_tpl = _tpl.replace(//g, this.elementCount);
because it's not escaped. It should be
_tpl = _tpl.replace(/\{\{i\}\}/g, this.elementCount);
The text was updated successfully, but these errors were encountered:
Thanks for the heads up! Fancy submitting a pull request?
Sorry, something went wrong.
I'm not really that into Github and I don't know how things work around here. Just wanted to report the bug :)
Sure, I'll look at pushing up a fix when I get some time.
No branches or pull requests
I've tried using the script on Codepen and it worked, but when installing it locally the console returned an error.
Uncaught SyntaxError: missing ) after argument list" on line 208
Now the line with the problem is actually the previous one
_tpl = _tpl.replace(/{{i}}/g, this.elementCount);
The browser reads it like
_tpl = _tpl.replace(//g, this.elementCount);
because it's not escaped. It should be
_tpl = _tpl.replace(/\{\{i\}\}/g, this.elementCount);
The text was updated successfully, but these errors were encountered: