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
https://github.com/FAC-11/myspace/blob/master/src/views/home.hbs#L7 could have been written in a DRYer way.
Something like this:
{{#each ["5", "10", "15", "20", "25", "30"]}} <li><button class="distance-li__link" name="distance" value="{{this}}" onclick="window.location.href='/results/{{this}}'">{{this}}au</button></li> {{/each}}
Or something like that. This is quite a trivial example, but making more use of these helpers in general will help your projects
The text was updated successfully, but these errors were encountered:
ameliejyc
No branches or pull requests
https://github.com/FAC-11/myspace/blob/master/src/views/home.hbs#L7 could have been written in a DRYer way.
Something like this:
Or something like that. This is quite a trivial example, but making more use of these helpers in general will help your projects
The text was updated successfully, but these errors were encountered: