Skip to content

Instantly share code, notes, and snippets.

@dan-ste
Last active July 6, 2017 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dan-ste/5b4ccbdc5be70cd6cd2b73c52e223cb5 to your computer and use it in GitHub Desktop.
Save dan-ste/5b4ccbdc5be70cd6cd2b73c52e223cb5 to your computer and use it in GitHub Desktop.
<button onclick={{perform findStores}}>
Find Nearby Stores
{{#if findStores.isRunning}}
{{! ++ }}
{{fa-icon "spinner" spin=true}}
{{/if}}
</button>
{{#if result}}
{{#each result.stores as |s|}}
<li>
<strong>{{s.name}}</strong>:
{{s.distance}} miles away
</li>
{{/each}}
{{/if}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment