Skip to content

Commit

Permalink
docs: update 7gui example links (#6052)
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffrich authored Mar 5, 2021
1 parent c56653d commit ce3a579
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion site/content/examples/20-7guis/01-7guis-counter/App.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- https://eugenkiss.github.io/7guis/tasks#counter -->
<script>
let count = 0;
</script>

<!-- https://github.com/eugenkiss/7guis/wiki#counter -->
<input type=number bind:value={count}>
<button on:click="{() => count += 1}">count</button>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- https://github.com/eugenkiss/7guis/wiki#temperature-converter -->
<!-- https://eugenkiss.github.io/7guis/tasks/#temp -->
<input value={c} on:input="{e => setBothFromC(e.target.value)}" type=number> °c =
<input value={f} on:input="{e => setBothFromF(e.target.value)}" type=number> °f

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- https://eugenkiss.github.io/7guis/tasks/#flight -->
<script>
const tomorrow = new Date(Date.now() + 86400000);
Expand Down Expand Up @@ -44,7 +45,6 @@
}
</style>

<!-- https://github.com/eugenkiss/7guis/wiki#flight-booker -->
<select bind:value={isReturn}>
<option value={false}>one-way flight</option>
<option value={true}>return flight</option>
Expand Down

0 comments on commit ce3a579

Please sign in to comment.